G
Guest
i have a structure like
public struct structure
{
public int net_id;
public string net_desc;
public string net_mail;
public string[] update;
public string[] select;
}
i want to create an structure array whose length is undefined... but i keep
adding new copies of struct to array how could i make it. ???
public struct structure
{
public int net_id;
public string net_desc;
public string net_mail;
public string[] update;
public string[] select;
}
i want to create an structure array whose length is undefined... but i keep
adding new copies of struct to array how could i make it. ???