问题描述
这是在重新托管的设计器中...
如果我声明类型为List< MyNamespace.MyClass>的变量MyList,并尝试将默认值设置为New List(Of MyNamespace.MyClass )()我收到一个验证错误:
在处理表达式'New List(Of MyNamespace.MyClass)()'时遇到编译器错误. 类型'MyClass'未定义.
如果尝试将变量绑定到Activites OutArgument< List< MyClass>> ;,也会遇到相同的错误.
这是一个错误吗?
This is in a rehosted designer...
If I declare a variable MyList of type List<MyNamespace.MyClass>, and try to set the default value to New List(Of MyNamespace.MyClass)() i get a validation error:
"Compiler error encountered processing expression 'New List(Of MyNamespace.MyClass)()'. Type 'MyClass' is not defined."
I get this same error if I try to bind the varable to an Activites OutArgument<List<MyClass>>.
Is this a bug?
推荐答案
这篇关于类型列表< MyClass>的变量;不会接受默认值或绑定到OutArgument< List< MyClass>>.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!