HOi,
heb dit:
Maar krijg bij deze regel: animation.Add();
De volgende fout:
Error 3 No overload for method 'Add' takes '0' arguments C:\Users\savantKing\
THX
heb dit:
Code:
public Animation GetAnimation(int idx )
{
for (int i = 0; i < animation.Count; i++)
animation.Add();
//new CharDef();
//new Animation();
//animation.Add();
return (idx >= 0) ? animation[idx]: null;
return null;
Animation a = new Animation(100);
animation.Add(a);
//MessageBox.Show("Selected Item Text: " + animation[idx].ToString() + "\n" +
// "Index: " + animation[idx].ToString());
return null;
}
Maar krijg bij deze regel: animation.Add();
De volgende fout:
Error 3 No overload for method 'Add' takes '0' arguments C:\Users\savantKing\
THX