@string() public method

public @string ( ) : string
return string
Example #1
0
 //////////////////////////////////////////////////////////////////////////
 // Static
 //////////////////////////////////////////////////////////////////////////
 public static string encode(object obj)
 {
     StrBufOutStream @out = new StrBufOutStream();
       new ObjEncoder(@out, null).writeObj(obj);
       return @out.@string();
 }