EventManagerPro.Models.SubEventModel.this C# (CSharp) Method

this() public method

public this ( string propertyName ) : string
propertyName string
return string
        public string this[string propertyName]
        {
            get
            {
                return (!_errors.ContainsKey(propertyName) ? null :
                    String.Join(Environment.NewLine, _errors[propertyName]));
            }
        }