Beispiel #1
0
 public IEnumerator <ResultSetValue> GetEnumerator()
 {
     for (int i = 0; i < this.Count; i++)
     {
         yield return(stmt.ResultSetValueAt(i));
     }
 }
Beispiel #2
0
        public IResultSetValue this[int index]
        {
            get
            {
                if (index < 0 || index >= this.Count)
                {
                    ThrowHelper.ThrowArgumentOutOfRangeException();
                }

                return(stmt.ResultSetValueAt(index));
            }
        }