I have a class with one public property.
public class CustomEntity
{
string _FileName;
public string FileName
{
get { return _FileName; }
set
{
_FileName = value;
}
}
}
I have array of string which I want to convert in List of "CustomEntity" using linq. please suggest me how I can do that.