Babel.Core.BOOL.str C# (CSharp) Method

str() public static method

public static str ( bool self ) : string
self bool
return string
        public static string str(bool self)
        {
            return self ? "true" : "false";
        }