コード例 #1
0
 /// <summary>
 /// Returns a value getter delegate to fetch the value of the given <paramref name="column"/>, from the row.
 /// This throws if the column is not active in this row, or if the type
 /// <typeparamref name="TValue"/> differs from this column's type.
 /// </summary>
 /// <typeparam name="TValue"> is the column's content type.</typeparam>
 /// <param name="column"> is the output column whose getter should be returned.</param>
 public abstract ValueGetter <TValue> GetGetter <TValue>(DataViewSchema.Column column);
コード例 #2
0
 /// <summary>
 /// Returns whether the given column is active in this row.
 /// </summary>
 public abstract bool IsColumnActive(DataViewSchema.Column column);