Posts by Leandro Pereira Monteiro • 47 points
2 posts
-
0
votes3
answers285
viewsA: How to serialize a class to file in C#?
I will intonrei this solution public static void WriteFile(object obj, string filename) { byte[] data; using (MemoryStream mStream = new MemoryStream()) { BinaryFormatter formatter = new…
-
3
votes3
answers285
viewsQ: How to serialize a class to file in C#?
How do I serialize a class to a C file#? I have a class [Serializable] public class MyClass { public int MyNumber { get; set; } public string MyName { get; set; } }…