ExcelToolKit.CommandParser.this C# (CSharp) Method

this() public method

public this ( string Param ) : string
Param string
return string
        public string this[string Param] {
            get {
                if (Parameters.ContainsKey(Param)) {
                    return Parameters[Param];
                }
                return null;
            }
        }