Assignment No 4
Assignment No 4
Page | 1
From your Download folder, double-click the bootstrapper that matches or is similar to
one of the following files:
Page | 2
For example, choose the "ASP.NET and web development" workload. It comes with the default
core editor, which includes basic code editing support for over 20 languages, the ability to open
and edit code from any folder without requiring a project, and integrated source code control.
Next, status screens appear that show the progress of our Visual Studio installation.
Page | 3
Step 6 - Install language packs (Optional)
By default, the installer program tries to match the language of the operating system
when it runs for the first time. To install Visual Studio in a language of our choosing,
choose the Language packs tab from the Visual Studio Installer, and then follow the
prompts.
Page | 4
Step 7 - Select the installation location (Optional)
We can reduce the installation footprint of Visual Studio on our system drive. we can
choose to move the download cache, shared components, SDKs, and tools to different
drives, and keep Visual Studio on the drive that runs it the fastest.
Page | 5
Step 8 - Start developing
1. After Visual Studio installation is complete, choose the Launch button to get
started developing with Visual Studio.
3. In the search box, enter the type of app we want to create to see a list of
available templates. The list of templates depends on the workloads that we chose
during installation. To see different templates, choose different workloads.
We can also filter our search for a specific programming language by using
the Language drop-down list. we can filter by using the Platform list and
the Project type list, too.
Page | 6
Q2) Write the steps to compile and run c# program in
command prompt?
Page | 7
5. In the "System Variables" box (lower side), first select "Path" and then click "Edit" button.
Page | 8
6. At the end of the "Variable value", first put a semicolon ";" (with out invited comma) and
then paste the following line:
C:\Windows\Microsoft.NET\Framework64\v3.5\
7. Click "Ok".
9. Create a folder named "test" on desktop and then save the file as HelloCS.cs inside this
folder.
Page | 9
10. Now go to desktop and Click on the "test" folder.
13. Type
csc HelloCS.cs
HelloCS
Hello World !
Page | 10
Page | 11