MongoDB c#sharp Property vs Field vs Member vs Element

时间:2015-05-01 15:31:51

标签: mongodb mongodb-.net-driver

研究自定义序列化,

之间有什么区别
List<JTextField> list = Arrays.asList(new JTextField("165000", 10),new JTextField("30", 10));

// and then in some place
for (JTextField textfield : list)
{
    mortgFields.add(textfield);
}

2 个答案:

答案 0 :(得分:0)

这个答案应该涵盖它:

What is the difference between a Field and a Property in C#?

C#字段是隐藏的。属性公开字段。

答案 1 :(得分:-1)

来自http://api.mongodb.org/csharp/1.0/html/18aadb76-2494-c732-9768-bc9f41597801.htm

<强> MapProperty 创建属性的成员映射并将其添加到类映射。

<强> MapField可
为字段创建成员映射并将其添加到类映射。

<强> MapMember
为成员创建成员映射并将其添加到类映射。