This probably has already been asked, sorry, but is C# an object-oriented language like Java? It's been a while since I worked in C++, but I just wanted to check: can I make multiple classes and use them as objects in the same Visual Studio project? And would these be .cs files? e.g. Playback_Adjuster.cs, Gesture_Control.cs, Audio_File.cs?
Thanks!
partial classstatement. Using one class for Form/Window can put interface related objects in one and logic in another file.