I\'ve gotten to a point where my main code file is about a thousand lines long and it\'s getting un-manageable; that is, I\'m starting to get confused and not know where to
For large classes use either: a. Region blocks eg
#region // Members int my_int; // other members... #endregion
b. partial keyword to break a single class accross several files.