-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Performance
praeclarum edited this page Jul 18, 2012
·
3 revisions
| Serializer | Time |
|---|---|
| BinaryFormatter | 0.6671089 |
| BinaryWriter Explicit | 0.1163388 |
| BinaryWriter Reflection | 0.4785611 |
| sqlite-net | 0.7273159 |
The following object was used in these tests:
[Serializable]
class TestObject {
public int Id { get; set; }
public string Name { get; set; }
public DateTime ModifiedTime { get; set; }
public double Value { get; set; }
public string Text { get; set; }
public int Last { get; set; }
}