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