Stupid .NET WTF

Feb 17, 2007 14:09


TableLayoutPanel MyTable = new TableLayoutPanel();
MyTable.ColumnCount = 2;
MyTable.ColumnStyles[0].SizeType = SizeType.AutoSize;
MyTable.ColumnStyles[1].SizeType = SizeType.AutoSize;
// last line triggers index out of bounds exception! WTF!!
Previous post Next post
Up