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.
32個のエントリを持つbytearray(復号化されたパスワード)をlocalsettingsに保存したいと思います。エラーは発生しませんが、読み取ると18エントリのバイト配列が表示されます。
なんで?
バイト配列を「現状のまま」保存しています。ただし、取得時にUTF8を使用してエンコードしているため、必要なものではありません。
これはうまくいくはずです。
byte[] passbyte = new byte[32]; // Store localSettings.Values["password"] = passbyte; // Fetch var passwordsecure = localSettings.Values["password"] as byte[];