CoApp.Developer.Toolkit.Scripting.Languages.PropertySheet.Rule.this C# (CSharp) Method

this() public method

public this ( string propertyName ) : PropertyRule
propertyName string
return PropertyRule
        public PropertyRule this[string propertyName]
        {
            get {
                return _properties.Where(each => each.Name == propertyName).FirstOrDefault();
            }
        }