Tagged Questions
10
votes
3answers
278 views
Serialization and Obfuscation in .NET
I have a binary that I want to obfuscate and the hand out to users. Let us assume I use the an unobfuscated version of my binary to serialze data using the off the shelf .NET binary formatter. Could ...
8
votes
5answers
3k views
Binary Deserialization with different assembly version
I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes.
The serialization/deserialization works fine, however if I were to change the ...
7
votes
1answer
384 views
C# BinaryFormatter exception
I'm attempting to move an object graph from a server process to a client. And it works. At least it works when the both the client and server are on my dev virtual machine. It also works when I run ...
6
votes
3answers
3k views
BinaryFormatter alternatives
A BinaryFormatter-serialized array of 128³ doubles, takes up 50 MB of space. Serializing an array of 128³ structs with two double fields takes up 150 MB and over 20 seconds to process.
Are there fast ...
5
votes
6answers
338 views
Binary file format with 1000s of records in C#
I would like to have an array model objects to be serialized to a binary stream. The model class will mainly have string and integer properties.
I believe that I can mark the class as [Serializable] ...
4
votes
5answers
523 views
ISerializable and backward compatibility
hello
I have to work an an old application that used binaryFormatter to serialize application data into filestream (say in a file named "data.oldformat")
without any optimizazion the main class has ...
4
votes
1answer
206 views
.Net Where to find the official specification of the BinaryFormatter serialization format?
I'd like to know what is the serialization format of the BinaryFormatter. I found this site which give some good informations, but it was obtained by reverse engineering and it is not complete.
Where ...
4
votes
2answers
643 views
Does BinaryFormatter apply any compression?
When .NET's BinaryFormatter is used to serialize an object graph, is any type of compression applied?
I ask in the context of whether I should worry about the object graph having many repeated ...
4
votes
1answer
426 views
How do I ignore event subscribers when serializing an object?
When the following class is serialized with a BinaryFormatter, any objects subscribing to the Roar event will also be serialized, since references to those objects are held by the EventHandler ...
3
votes
1answer
88 views
Deserialize to type whose namespace has changed
Using .NET 4/C#...
I need to deserialize old config files that contain the serialized representation of a type named, say, ns1.X . The serialization has been done using BinaryFormatter.
The problem ...
3
votes
2answers
343 views
SerializationBinder with List<T>
I'm trying to make the BinaryFormatter work across different versions of my assembly. The actual class I want to deserialize to is exactly the same in each assembly version, but on deserialization, ...
3
votes
2answers
502 views
Backwards compatibility in .NET with BinaryFormatter
We use BinaryFormatter in a C# game, to save user game progress, game levels, etc. We are running into the problem of backwards compatibility.
The aims:
Level designer creates campaign ...
3
votes
2answers
999 views
Why is BinaryFormatter trying to serialize an Event on a Serializable class?
I have a simple class that is marked as Serializable, and it happens to have an event. I tried to mark the event member as NonSerialized, however the compiler complains. Yet when I go to serialize the ...
2
votes
1answer
27 views
How to serialize an instance of the CustomLineCap class
CustomLineCap does not have the SerializableAttribute applied to it.
I want to add a property of this type to an object graph that is currently being serialized/deserialized with a BinaryFormatter.
...
2
votes
2answers
48 views
Strange deserialization error, child objects are not fully deserialized
I just noticed a weird behavior in binary serialization: when I deserialize a dictionary in my class and try to add something to it immediately, I get an error because it's not fully initialized:
...
2
votes
1answer
75 views
What causes an object version change with an object serialized with BinaryFormatter?
Per this question I have an object that I'm serializing with BinaryFormatter. For various reasons we've implemented a poor man's version handling like this with a try-catch block at the bottom for ...
2
votes
1answer
46 views
Deserialization of optional fields from BinaryFormatter
I have an application that serializes data using BinaryFormatter. A member was added to the class that was serialized from one version to the next without changing the class name. Code was added to ...
2
votes
2answers
185 views
Binary object graph serialization
I'm looking for advice on serialization in a .net app. The app is a desktop/thick client app and the serialization represents the persisted document format. The requirements for the serializer is
...
2
votes
2answers
140 views
BinaryFormatter object graph upgrade
In my object graph, I have something like
[Serializable]
public class Dog
{
string _name;
}
and I have all sorts of lists of Dogs and reference to Dogs.
Since Dog was only animal at the ...
2
votes
1answer
91 views
Does serializing distinct but equal object graphs with BinaryFormatter produce same binary representation?
I'm looking at hashing an object model, based on a serialization of it.
If I serialize an object graph using the .NET BinaryFormatter, is the serialized representation guaranteed to be the exact ...
2
votes
5answers
719 views
How to get BinaryFormatter to deserialize in a different application
I am using BinaryFormatter to serialize an array of class instances to a file. I can deserialize this fine within the same application. When I try the same deserialization in a different application ...
2
votes
2answers
216 views
How to refactor a class that is serialized in .NET?
I have a C# class that is serialized to disk by the BinaryFormatter, such as this example:
// Version 3.0
[Serializable]
public class Person
{
public string FullName;
...
2
votes
2answers
452 views
BinaryFormatter alternative
I am shopping for a BinaryFormatter alternative/replacement.
The current issues I have with BinaryFormatter (and the alternatives should address this) are
1) backwards compatibility (can ...
2
votes
4answers
672 views
How to change the order of Deserialization using BinaryFormatter in C#?
Lets say I have classA which contains classB and both are [Serializable].
I assumed, that on Deserialization classB would be deserialized first.
This is not the case however, as I could confirm by ...
2
votes
1answer
629 views
How to deserialize or recover a binary serialized dictionary that's not finished serializing?
When I used my app, on close, it tried to serialize a dictionary that's 300 KB. Because of no disk space, it could only write 292 KB. Is there a way to successfully deserialize whatever is in there?
...
1
vote
0answers
47 views
Explicit BinaryFormatter serialization when Constructor is not called
Some background about my problem:
I have a lot of classes that implement ISerializable and are designed to be serialized using the explicit BinaryFormatter methods:
.ctor(SerializationInfo info, ...
1
vote
4answers
1k views
BinaryFormatter deserialize gives SerializationException
I'm getting an:
System.Runtime.Serialization.SerializationException: Unable to find assembly 'myNameSpace, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
When trying to deserialize some data ...
1
vote
5answers
85 views
Can a IFormatter deserizalize a object of an unreferenced type?
Supose I serialized a third party library type object with BinaryFormatter. An assemby that does not references this library tries to deserialize the bytes. Will it work?
I do not expect to it be ...
0
votes
1answer
81 views
Performance issue when serializing multi-dimensional arrays using BinaryFormatter in .NET
I'm using the BinaryFormatter to serialize a fairly simple multi-dimentional array of floats, although I suspect that the problem occurs with any primitive types. My multi-dimensional array contains ...
0
votes
1answer
166 views
Binary Serialization of references using BinaryFormatter
Given the following class structure, will Bar serialize/deserialize as expected?
public class Foo { int x; string y; }
[Serializable]
public class Bar { Foo[] AllFoos; Foo SelectedFoo; public ...
0
votes
2answers
368 views
Serialization with BinaryFormatter *PERFORMANCE* issues
Background:
I'm stuck with LARGE object graph that gets serialized into some 60MBs of file (and will grow over time). Problem isn't file size but writing and reading times, that go up to 4 minutes ...