System.Collections.Generic.List.Add(property)

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 7

19 Source : objectDefiniton.cs
with Apache License 2.0
from tailored-apps

public void AddProperty(property property)
        {
            if (properties == null) { properties = new List<property>(); }

            var prop = properties as List<property>;
            prop.Add(property);
        }