bigloo.foreign.newstring C# (CSharp) Method

newstring() public static method

public static newstring ( Object o ) : String
o Object
return String
        public static String newstring( Object  o )
        {
            if (o is byte[])
               return newstring( (byte[])o );
            else
               return o.ToString();
        }

Same methods

foreign::newstring ( byte v ) : String
foreign::newstring ( byte v, int offset, int length ) : String
foreign