Chronicle of a Mundane Life!
My scream reverberates in the abyss of eternity...
Pages
Screams!
Quotes!
Publications!
About me!
Thursday, April 12, 2007
Easiest way to Clone in C#
public object Clone()
{
MemoryStream stream = new MemoryStream();
BinaryFormatter bformatter = new BinaryFormatter();
bformatter.Serialize(stream, this);
stream.Position = 0;
return bformatter.Deserialize(stream);
}
No comments:
Post a Comment
Please, no abusive word, no spam.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Please, no abusive word, no spam.