예제 #1
0
 public static Int64 FromStringValue(string value)
 {
     byte[] bytes = System.Text.Encoding.UTF8.GetBytes(value);
     return(Int64Ex.FromBytes(bytes));
 }
예제 #2
0
 public static string ToStringValue(Int64 value)
 {
     byte[] bytes = Int64Ex.ToBytes(value);
     return(System.Text.Encoding.UTF8.GetString(bytes));
 }