public void Set(NumericType nt, long value) { this[nt] = value; }
public void Set(NumericType nt, float value) { this[nt] = (int)(value * 10000); }
public int GetAsInt(NumericType numericType) { return((int)GetByKey((int)numericType)); }
public long GetAsLong(NumericType numericType) { return(GetByKey((int)numericType)); }
public float GetAsFloat(NumericType numericType) { return((float)GetByKey((int)numericType) / 10000); }