Why write this series of blogs? Because I found that the knowledge learned is too easy to forget, even some very easy knowledge points, but also because of long time not to learn and lead to forget, so prepare some blog to review the previously learned points of knowledge. At the same time, you can forget the time through some of the blog to do a review of knowledge points.
The introduction to. NET development is primarily about learning. NET Basics
First think about what is programming?
Programming: The programmer uses a computer to understand a way of directing a computer to help us do things. Programming language: A way for software engineers to communicate with computers. NET development, what is the. NET and what is C #? Before you say what the platform is, the platform is a 1 software or hardware environment. These environments can be exploited by 3rd parties. Used to help him complete the function it wants to accomplish smoothly and conveniently. (Chestnut: stage). NET is a 1 platform, and C # is a 1-door programming language. The C # programming language uses the. NET platform to write, deploy, and run our. NET programs. (. NET framwork) XP: What can I do without. NET win vista:3.5 win 7:4.0 win 8:4.5. Net? Understand the above knowledge point, began to enter the development, exploitation and utilization of the integrated development environment IDE called Visual Studio to understand what is the solution in VS, what is the project solution is to manage the project, there may be more than one project project is what we want to do, multiple projects together into a solution
How the solution manages the project: The projects managed by this solution are defined in the SLn file.
The removal of the project and the addition of the existing project is actually helping us to modify the SLn file.
Project: The 1 programs we write are 1 projects.
There may be many resources in 1 projects. There may be a lot of source files in the project. There may also be multimedia files.
The resources in the project are managed by 1 files called. csproj.
The new series (1)--net Development Prelude