Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Byte[] 配列を XML に (C# を使用して) 格納する簡単な方法は何でしょうか?
Convert.ToBase64String(byte[])base 64 表現に変換し、結果の文字列を格納するために使用します。
Convert.ToBase64String(byte[])
byte[]メソッドを呼び出すことで元に戻すことができますConvert.FromBase64String(string)。
byte[]
Convert.FromBase64String(string)