Redzen.Structures.Compact.FixedPointDecimal.Create C# (CSharp) Method

Create() public static method

Static factory method to create a FixedDecimal.
public static Create ( decimal d ) : FixedPointDecimal
d decimal The value to create the object from.
return FixedPointDecimal
        public static FixedPointDecimal Create(decimal? d)
        {
            return new FixedPointDecimal(d);
        }