c# 4.0 - Microsoft WF .NET ExpressionText causes validation errors -


this related workflow foundation .net 4.0. have found when setting expressiontext reserved keyword such "interface" or "class", underlying validation service in foundation throws validation message stating "one or more children have validation errors or warnings".

we setting expressiontext of argument this:

        argument inarg = argument.create(typeof(t), argumentdirection.in);          inarg.expression = new visualbasicvalue<t>         {             expressiontext = selecteditem,         };          mp.setvalue(inarg);  

any idea if known issue, , how can handle it?


Comments

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -