0
ok thanks for your help Vulpes and Abhijit
0
thanks for your reply....in a program/app how many partial classes can you have and what other options can you use beside partial classes if you want split your classes?
0
Please verify the link
http://www.c-sharpcorner.com/UploadFile/3d39b4/partial-classes-in-C-Sharp-with-real-example/
0
Hey i explain below in Patical class in details for windows application in C#
By default the project comes with 2 files in it:
-Form1.cs
-Program.cs
-Form1.cs is the file in which a class Form1 is defined inheriting from predefined class Form.
Eg: public partial class Form1 : Form
-Windows applications developed under VS has 2 places to work with:
1. Design View
2. Code View
-Design View is the place where we design the app. this is accessible both to programmer's and end user's where as Code View is the place where we write code for the execution of application, this is accessible only to programmers.