Are there restrictions or penalties for the amount of code inside my form home.cs?
I am writing the front end of a database application in C # in Visual Studio 2008. The way everything is built up, I use the way to go to the information displayed to end users, instead of using new forms.
Starting with VBA / MS Access, I remember that if you go to a certain number of lines of code, this will lead to an error, not a compilation. Will C # do this in Visual Studio 2008, or can I suffer from a performance hit? I know that code readability can be a problem because everything will be in one place, but I can also see this as an advantage in some situations.
source
share