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;}
Posted 25 September 2012 - 02:32 PM
public int ID { get; set; }
public uint [5] BIG_Hash {get; set;}
Posted 25 September 2012 - 02:50 PM
public uint[] BIG_Hash { get; set; }
public MyClass()
{
BIG_Hash = new uint[5];
BIG_Hash[0] = 123;
}
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
