简化集合初始化
在初始化 WF4 活动时,我们可以执行以下操作:
Sequence s = new Sequence()
{
Activities = {
new If() ...,
new WriteLine() ...,
}
}
请注意,Sequence.Activities
是一个 Collection
,但无需使用新的 Collection() 即可对其进行初始化。
如何在我的 Collection
属性上模拟此行为?
While initializing WF4 activities we can do something like this:
Sequence s = new Sequence()
{
Activities = {
new If() ...,
new WriteLine() ...,
}
}
Note that Sequence.Activities
is a Collection<Activity>
but it can be initialized without the new Collection().
How can I emulate this behaviour on my Collection<T>
properties?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何具有
Add()
方法并实现IEnumerable
的集合都可以通过这种方式初始化。有关详细信息,请参阅C# 的对象和集合初始值设定项。 (缺少 newCollection
调用是由于对象初始值设定项,而内联添加项目的能力是由于集合初始值设定项。)编译器将自动调用
类上的 Add()
方法以及集合初始化块中的项目。作为示例,这里有一段非常简单的代码来演示:
Any collection that has an
Add()
method and implementsIEnumerable
can be initialized this way. For details, refer to Object and Collection Initializers for C#. (The lack of the newCollection<T>
call is due to an object initializer, and the ability to add the items inline is due to the collection initializer.)The compiler will automatically call the
Add()
method on your class with the items within the collection initialization block.As an example, here is a very simple piece of code to demonstrate: