1)
i want to set value in a float range (0, 1)
public float Random {
get { return random; }
set { random=(value<0)?0:((value>1)?1:value); }
}
2)
Another question :
in ninjatrader the decimal is declared with "," ? (comma)
in Properties
ex: if i fill it with 0.2...isn't correct ....i give fill with 0,2

Comment