1 00:00:00,180 --> 00:00:06,810 ‫In this video, I'm going to show you how you can start a Visual Studio project with C-sharp in Visual 2 00:00:06,810 --> 00:00:07,830 ‫Studio on a mac. 3 00:00:07,830 --> 00:00:14,820 ‫And therefore, you simply need to open up Visual Studio community on your Mac and then open a new solution, 4 00:00:15,120 --> 00:00:23,550 ‫go to file a new solution, and then under other dot net you can find the console project and here you 5 00:00:23,550 --> 00:00:28,080 ‫can simply select C-sharp and then press next. 6 00:00:28,230 --> 00:00:31,320 ‫Then you give it a project name, for example. 7 00:00:31,350 --> 00:00:33,480 ‫Hello Underscore World. 8 00:00:34,840 --> 00:00:36,430 ‫And then press create. 9 00:00:37,980 --> 00:00:45,390 ‫Once that is done, you will find your project here with the program dot CSS file in your helloworld 10 00:00:45,390 --> 00:00:46,050 ‫folder. 11 00:00:46,930 --> 00:00:47,710 ‫There it is. 12 00:00:48,070 --> 00:00:55,060 ‫And then you simply press the run button here at the top and the console runs so you can see our little 13 00:00:55,060 --> 00:01:01,910 ‫program starts and it rides a little world onto our console as well as press any key to continue. 14 00:01:01,930 --> 00:01:09,520 ‫So on Windows, you have to type that out manually, so you have to add a console read in order to keep 15 00:01:09,520 --> 00:01:10,690 ‫the console open. 16 00:01:10,690 --> 00:01:16,570 ‫And you also need to have a console right line in order to have this press any key to continue print 17 00:01:16,570 --> 00:01:23,080 ‫it onto your console button make that's happening automatically so your console will stay open anyways. 18 00:01:23,080 --> 00:01:29,170 ‫But I'm going to use the approach as on Windows where I need to add the following line. 19 00:01:29,170 --> 00:01:36,790 ‫So I would need to add console dot read key for example, and that would leave the console open. 20 00:01:36,790 --> 00:01:38,200 ‫So let me run that again. 21 00:01:38,470 --> 00:01:41,440 ‫And as you can see now, it expects a key. 22 00:01:41,440 --> 00:01:45,490 ‫So that's why it doesn't show do whatever next. 23 00:01:45,490 --> 00:01:50,200 ‫So if I press that, then press any key to continue comes up. 24 00:01:50,200 --> 00:01:54,670 ‫But on a windows that wouldn't come up and the program would simply shut down. 25 00:01:55,690 --> 00:02:01,220 ‫Other than that, everything should be the same except for, of course the user interface as well. 26 00:02:01,240 --> 00:02:02,920 ‫So see you in the next video.