Beispiel #1
0
        public static IProperty AddPropertyWithSpec(this IDictProperties properties, string key, Data data)
        {
            IProperty prop = properties.AddProperty(key, data);

            if (prop != null)
            {
                SetPropertyWithSpec(prop, data);
            }
            return(prop);
        }
Beispiel #2
0
 public sealed class BoolProperty : BaseProperty <bool> {                           //__SILP__
     public BoolProperty(IDictProperties owner, string key) : base(owner, key)      //__SILP__
     {
     }                                                                              //__SILP__