Here are the examples of the csharp api System.Collections.Generic.List.Add(property) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
19
View Source File : objectDefiniton.cs
License : Apache License 2.0
Project Creator : tailored-apps
License : Apache License 2.0
Project Creator : tailored-apps
public void AddProperty(property property)
{
if (properties == null) { properties = new List<property>(); }
var prop = properties as List<property>;
prop.Add(property);
}