Fusion.Core.Mathematics.Half.ToString C# (CSharp) Method

ToString() public method

Converts the value of the object to its equivalent string representation.
public ToString ( ) : string
return string
        public override string ToString()
        {
            float num = this;
            return num.ToString(CultureInfo.CurrentCulture);
        }