|

September 25th, 2012, 05:25 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2005
Posts: 101
Thanks: 0
Thanked 1 Time in 1 Post
|
|
How do I do a get/post for an array in c#?
How do I do a get/post for an array in c#?
In C#, you get and set variables like this:
Code:
public int ID { get; set; }
How would one get and set an array in C#?
This will not work:
Code:
public uint [5] BIG_Hash {get; set;}
|