CoApp.Developer.Toolkit.Scripting.Languages.PropertySheet.Rule.this C# (CSharp) 메소드

this() 공개 메소드

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