1.NET Two modes of interaction: C/S: client/server mode (server) b/S: Browser (Browser)/server mode (server)
2 start Mode: Double-click to open/Bring up cmd input devenv
3 relationships between solutions, projects, and classes: solutions, projects, and categories
4 Find Solution Manager in view
5 method or function: The main function is the main entrance of our program, and the code you write must be written in the main function if you want it to be executed.
6:.sln: The solution file, which contains information about the entire solution, can be run by double-clicking. . csproj: Project file, which contains information about this project, can be run by double-click.
7: Code Specification
1. Single line comment//Comment Line code
Multiline comment/* What to annotate */
Document Comments//Comments classes and methods
HTML <! --What to annotate--
CSS/* What to annotate */
2. Naming specification
Camel Camel Name Specification: First letter of the first word is required lowercase, the remaining words are capitalized variables, fields
Pascal class or method
. NET Learning Notes