L
Larry Smith
Looking at the ".resx" files produced by the Windows forms designer, I see
nodes like this:
<data name="MyRadioBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 21</value>
If you then read the "94, 21" back into your code as a string (exactly as
seen), how do you then deserialize it so it can be converted back into a
"System.Drawing.Size" object (i.e.,there's no "System.Drawing.Size"
constructor that takes this string as an argument but in any case, I assume
the correct way is to reverse the process that created this string in the
first place). Any help would be appreciated. Thanks.
nodes like this:
<data name="MyRadioBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>94, 21</value>
If you then read the "94, 21" back into your code as a string (exactly as
seen), how do you then deserialize it so it can be converted back into a
"System.Drawing.Size" object (i.e.,there's no "System.Drawing.Size"
constructor that takes this string as an argument but in any case, I assume
the correct way is to reverse the process that created this string in the
first place). Any help would be appreciated. Thanks.