P
pamela fluente
I have serialized (Binary Formatter) an object of mine into a file.I
have added that file to my resources.
How do I get back the object within my program.
I tried intuitively this, but it's wrong (no error but gets Nothing):
Dim m As MyLittleObject =
CType(My.Resources.ResourceManager.GetObject("MyLittleObject"),
MyLittleObject)
What the right way?
-P
have added that file to my resources.
How do I get back the object within my program.
I tried intuitively this, but it's wrong (no error but gets Nothing):
Dim m As MyLittleObject =
CType(My.Resources.ResourceManager.GetObject("MyLittleObject"),
MyLittleObject)
What the right way?
-P