William Thompson

William Thompson

  • 1.5k
  • 128
  • 292.5k

How do I do a get/post for an array in c#?

Sep 25 2012 5:47 PM
How do I do a get/post for an array in c#?
In C#, you get and set variables like this:
        public int ID { get; set; }

How would one get and set an array in C#?
This will not work:
        public uint [5] BIG_Hash {get; set;}


Answers (1)