FeliCa2Money.CsvRule.getCol C# (CSharp) Method

getCol() private method

private getCol ( string row, string key ) : string
row string
key string
return string
        private string getCol(string[] row, string key)
        {
            if (mColumnIndex[key] == null)
            {
                return null;
            }
            int col = (int)mColumnIndex[key];
            return row[col];
        }