My mind hurts trying to figure this out...i need to save into the list items how so i go about that.
public class vipData
{
public int item;
public ulong skinid;
public int amount;
public string name;
public string displayName;
public string Permission;
}
class IEntity
{
public Dictionary iEntity = new Dictionary();
public IEntity() { }
}
class IInfo
{
public List items = new List();
public IInfo() { }
public IInfo(long cd)
{
}
}
void SaveIData()
{
I.WriteObject(iData);
}