Skip to content

Instantly share code, notes, and snippets.

@atifaziz
Created February 11, 2010 21:23
Show Gist options
  • Save atifaziz/301973 to your computer and use it in GitHub Desktop.
Save atifaziz/301973 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
public interface ITable<THeader, TRow> : IEnumerable<TRow>
{
IEnumerable<THeader> Headers { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment