I created my class with a couple of properties.
And i was trying to use the List and create a constructor to send an object and have it creating the list with all the objects.
public class List<MyObject>
{
public List<MyObject>(object x)
{
//Do Things here
}
}
Is this possible?