Skip to content

Commit

Permalink
cleaned up stuff;
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Seguin committed May 23, 2010
1 parent 75bc498 commit 781b35f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions Metsys.Little.Tests/IntegrationTests.cs
Expand Up @@ -99,8 +99,6 @@ public void NestedTypesWithCollectionOfObjects()
Assert.Equal(customer.Orders[0].Price, actual.Orders[0].Price);
Assert.Equal(customer.Orders[1].Ordered, actual.Orders[1].Ordered);
Assert.Equal(customer.Orders[1].Price, actual.Orders[1].Price);


}
}
}
1 change: 0 additions & 1 deletion Metsys.Little.Tests/TestClasses.cs
Expand Up @@ -64,7 +64,6 @@ public Customer(int id)
Id = id;
}
}

public class Address
{
public int StreetNumber { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion README.textile
Expand Up @@ -11,7 +11,7 @@ Metsys.Little is a lightweight .NET binary serializer with a focus on compactnes
Description = null,
};@

Metsys.Little will serialize this to a 13 bytes. The built-in BinaryFormatter will take 400 bytes.
Metsys.Little will serialize this to a 13 bytes. The built-in BinaryFormatter will take 400 bytes. The object created in the IntegrationTests.NestedTypesWithCollectionOfObjects method serializes to 74 bytes - the BinaryFormatter is over 900.

This is achieved without any cpu-intensive compression or other fancy tricks.

Expand Down

0 comments on commit 781b35f

Please sign in to comment.