public static BytesEx FromBytes(byte[] bytes) { BytesEx result = new BytesEx { Values = bytes }; return(result); }
public static BytesEx FromHex(string hex) { byte[] bytes = hex.AsHexToBytes(); BytesEx result = new BytesEx { Values = bytes }; return(result); }
public static BytesEx FromBase64(string base64) { byte[] bytes = base64.AsBase64ToBytes(); BytesEx result = new BytesEx { Values = bytes }; return(result); }
public static BytesEx FromString(string @string) { byte[] bytes = Encoding.UTF8.GetBytes(@string); BytesEx result = new BytesEx { Values = bytes }; result.Values = bytes; return(result); }