What you have there is a property, not a variable. If you really want to have an array which has exactly 5 values in it, you might define the property like this, with a read only backing array of exactly 5 values:
private readonly uint[] _bigHash = new uint[5];
public uint [] BigHash
{
get
{
return _bigHash;
}
}