예제 #1
0
 private MHTRow GetMHTRow(uint index)
 {
     IRow result = null;
     if (!Rows.TryGetValue(index, out result))
     {
         result = new MHTRow();
         Rows.Add(index, result);
     }
     return result as MHTRow;
 }
예제 #2
0
        private MHTRow GetMHTRow(uint index)
        {
            IRow result = null;

            if (!Rows.TryGetValue(index, out result))
            {
                result = new MHTRow();
                Rows.Add(index, result);
            }
            return(result as MHTRow);
        }