Hi,
I have an object that manages a kind of Variant type. For comfort reasons I
want to have the possibility to do this:
MyPropclass prop = new MyPropclass();
string m = "blabla";
prop = m;
How can I do this? Is there a way to overwrite "="? Or must I extend "string"?
Thanks
doc
I have an object that manages a kind of Variant type. For comfort reasons I
want to have the possibility to do this:
MyPropclass prop = new MyPropclass();
string m = "blabla";
prop = m;
How can I do this? Is there a way to overwrite "="? Or must I extend "string"?
Thanks
doc
Comment