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;}