I couldn\'t find any information pertaining to this question. I am trying to create a global array in C# so that I can input information into it at different points in my co
this is a very bad idea.
instead create/save/load the objects from storage as needed.
class Auction { public long Id {get; set;} public string ItemName {get; set;} ... }