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.
int count = deserializer.Deserialize(fileStream);
タイプ 'object' を 'int' に暗黙的に変換することはできません。明示的な変換が存在します (キャストがありませんか?)
試すint count = (int)deserializer.Deserialize(fileStream);
int count = (int)deserializer.Deserialize(fileStream);
それが本当に である場合は、次のInt32ことができます。
Int32
シリアライザーは、コンパイル時に逆シリアル化している型を認識していないため、メソッドはオブジェクトを返します。そのオブジェクトを実際の型にキャストする必要があります。