Visual-studio-2015 - Riptutorial

Transcription

visual-studio-2015#visualstudio-2015

Table of ContentsAbout1Chapter 1: Getting started with etup2Navigation3Credits5

AboutYou can share this PDF with anyone you feel could benefit from it, downloaded the latest versionfrom: visual-studio-2015It is an unofficial and free visual-studio-2015 ebook created for educational purposes. All thecontent is extracted from Stack Overflow Documentation, which is written by many hardworkingindividuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official visual-studio2015.The content is released under Creative Commons BY-SA, and the list of contributors to eachchapter are provided in the credits section at the end of this book. Images may be copyright oftheir respective owners unless otherwise specified. All trademarks and registered trademarks arethe property of their respective company owners.Use the content presented in this book at your own risk; it is not guaranteed to be correct noraccurate, please send your feedback and corrections to info@zzzprojects.comhttps://riptutorial.com/1

Chapter 1: Getting started with visual-studio2015RemarksVisual-Studio-2015 is an IDE developed by Microsoft.It has a user-friendly interface and it is easy to work with, it also support Git repository formanaging projects and Xamarin Studio(Mono Develop) to develop android soft wares.It mostly supports C# , VB(Visual Basics) , F# and C programming languages but it alsosupports other languages like Python or Ruby.ExamplesInstallation/SetupYou can get the download link for the setup file in here : https://www.visualstudio.com [Scroll to thebottom of the page and download the Visual Studio]The setups are relatively simply and common. But do take note when they ask you to downloadthe default or custom, you can choose to download the custom and pick whichever programminglanguage you want to download alongside with it too! [Default mainly comes with C#/VB]For android/Cross-OS development, you can take Xamarin, it is supported by Visual Studio andvice versa.When you startup Visual Studio, you can go to the top bar, tools options and configure how yourIDE looks, shortcut keys etc. (Refer to picture below)https://riptutorial.com/2

And that its , you can basically go to the top bar, files new to create a new project and start yourwork!NavigationYou can navigate to your desired classes, functions, structures, etc using the top navigation barhere.Simply click on it, a drop-down list will popup. Click on the desired variable you want to edit, and itwill automatically bring to that block of code.https://riptutorial.com/3

Alternatively, you can also use the Solution Explorer to help you navigate around your codes. It isat the right-hand side as a panel by default. Expand the namespace, classes, and double-click onthe desired variable you want to edit, and it will automatically bring you to that block of code.Read Getting started with visual-studio-2015 online: riptutorial.com/4

CreditsS.NoChaptersContributors1Getting started withvisual-studio-2015Community, Wen Qinhttps://riptutorial.com/5

Chapter 1: Getting started with visual-studio-2015 Remarks Visual-Studio-2015 is an IDE developed by Microsoft. It has a user-friendly interface and it is easy to work with, it also support Git repository for managing projects and Xamarin Studio(Mono Develop) to develop android soft wares. It mostly supports C# , VB(Visual Basics) , F# and C .