Here's the definition for myObject.
class myObject
{
#region variables
private Int64 _id;
private Int64 _origID;
private String _name;
#endregion
#region properties
public Int64 id
{
get { return this._id; }
}
public Int64 origID
{
get { return this._origID; }
}
public String name
{
get { return this._name; }
}
#endregion
#region methods
public void myObject(Int64 id, Int64 origID, String name) // <-- Constructor
{
this._id = id;
this._origID = origID;
this._name = name;
}
#endregion
}
And here's the attempt to add it to the list:
List
for (i=0,i
}
Don IrelandPosted Apr 5, 2014, 8:17 PM
Thanks anyway.