i´m using kent boogaart dlls wpf converters im vs2008 http://wpfconverters.codeplex.com/downloads/get/648993 when try import kent.boogaart.converters.dll, receive error. is release vs2012 ? http://wpfconverters.codeplex.com/releases/view/104331
the following code doesn't work, think it's clear want do: my.struct = 1; foo.bar = my.struct; so that foo.bar.struct = 1 basically want fill in my structure array bunch of fields , values. want place struct nested struct within foo.bar while retaining field names. my.struct = 1; foo.bar = my.struct; this places value of my.struct (= 1 ) in foo.bar . of course foo.bar 1 . i think you're after this: my.struct = 1 foo.bar = my;
Comments
Post a Comment