예제 #1
0
        public void SetValueTo(RRow row, string column, Action <RValue> setter)
        {
            int idx;

            if (this.columnByIndex.TryGetValue(column, out idx))
            {
                setter(row.Values[idx]);
            }
        }
예제 #2
0
        public RValue RetrieveValue(RRow row, string column)
        {
            int idx;

            return(this.columnByIndex.TryGetValue(column, out idx) ? row.Values[idx] : null);
        }