Azavea.NijPredictivePolicing.Common.Data.TabSeparatedValueWriter.CreateTable C# (CSharp) Method

CreateTable() public method

simply appends the column row. call this first! (you would have to call this first anyway.)
public CreateTable ( string tablename, IEnumerable columns ) : bool
tablename string
columns IEnumerable
return bool
        public bool CreateTable(string tablename, IEnumerable<string> columns)
        {
            return WriteLine(columns);
        }