- C# Programming Cookbook
- Dirk Strauss
- 341字
- 2021-07-14 11:08:39
Creating your Visual Studio project
The Visual Studio project that you will create will be used to add the classes that contain the code samples in each recipe of this book. The project will be a simple console application that will call into static classes that do the work of illustrating the recipe code and outputting the results (if any) to the console window.
Getting ready
To step through the recipes in this book, you will need a copy of Visual Studio 2015. If you do not have a copy of Visual Studio 2015, you can download a free copy of Visual Studio 2015 Community from https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx.
You can also compare editions of Visual Studio 2015 by navigating to https://www.visualstudio.com/en-us/products/compare-visual-studio-2015-products-vs.aspx.
After you have downloaded and installed Visual Studio 2015, create a new console application that will contain the recipes illustrated in this book.
How to do it…
- Start Visual Studio 2015 and click on the File menu. Then, click on New and then select Project. You can also use the Ctrl + Shift + N keyboard shortcut:
- From the New Project dialog screen, select Console Application, which can be found by going to Installed | Templates | Visual C# | Windows | Classic Desktop in the tree view to the left. You can call your console application
CodeSamples
:Note
You will notice that the selected framework is .NET Framework 4.6.1, which is selected by default. Leave this framework selected when creating your project.
- Visual Studio now creates your console application, which we will use to create all the code samples needed for this book.
How it works…
This console application will form the base of the recipes in this book. Each recipe can be individually added to this console application. A recipe, therefore, can function on its own without the need to create a previous recipe. You can also easily separate any custom code you might want to add and experiment with. It is also recommended that you play around with the code by adding classes of your own.
- Getting Started with React
- Learn Type:Driven Development
- Koa開發:入門、進階與實戰
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- OpenShift在企業中的實踐:PaaS DevOps微服務(第2版)
- Python機器學習算法與實戰
- Linux:Embedded Development
- Mastering AWS Security
- Android Studio Cookbook
- Android Sensor Programming By Example
- Python程序設計教程
- Learning Cocos2d-JS Game Development
- Monitoring Docker
- Learning Redux
- 軟件再工程:優化現有軟件系統的方法與最佳實踐