<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: KeigoNakano</title>
    <description>The latest articles on DEV Community by KeigoNakano (@keigo0216).</description>
    <link>https://dev.to/keigo0216</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1141652%2Fdb491e3c-f19a-434e-99e1-82a10fb9e327.png</url>
      <title>DEV Community: KeigoNakano</title>
      <link>https://dev.to/keigo0216</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/keigo0216"/>
    <language>en</language>
    <item>
      <title>What Does Console Application Mean in C#?</title>
      <dc:creator>KeigoNakano</dc:creator>
      <pubDate>Sun, 20 Aug 2023 02:07:18 +0000</pubDate>
      <link>https://dev.to/keigo0216/what-does-console-application-mean-in-c-l85</link>
      <guid>https://dev.to/keigo0216/what-does-console-application-mean-in-c-l85</guid>
      <description>&lt;p&gt;A console application facilitates the reading and writing of characters from a console.It is the simplest form of a C# program and is typically invoked from terminal.It is usually stand-alone executable file.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Main method in C#9 and later</title>
      <dc:creator>KeigoNakano</dc:creator>
      <pubDate>Sun, 20 Aug 2023 01:32:24 +0000</pubDate>
      <link>https://dev.to/keigo0216/main-method-in-c9-and-later-2lm</link>
      <guid>https://dev.to/keigo0216/main-method-in-c9-and-later-2lm</guid>
      <description>&lt;p&gt;In C#9 and later, it is not necessary to explicity include Main() in a console application.&lt;/p&gt;

&lt;h2&gt;
  
  
  In C#9 and later
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight csharp"&gt;&lt;code&gt;&lt;span class="c1"&gt;// See https://aka.ms/new-console-template for more information&lt;/span&gt;
&lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello, World!"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Prior to C#9
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;using System;
name MyApp // Note: actual namespace depends on the project name.
{
   internal class Program
  {
      static void Main(string[] args)
      {
          Console.WriteLine("Hello World!")
      }
   }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Working with C# in VS Code.</title>
      <dc:creator>KeigoNakano</dc:creator>
      <pubDate>Sat, 19 Aug 2023 03:50:47 +0000</pubDate>
      <link>https://dev.to/keigo0216/working-with-c-in-vs-code-255p</link>
      <guid>https://dev.to/keigo0216/working-with-c-in-vs-code-255p</guid>
      <description>&lt;h1&gt;
  
  
  What can C# can do?
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;Application development(Xamarin)&lt;/li&gt;
&lt;li&gt;Game　development(Unity, UnrealEngine)&lt;/li&gt;
&lt;li&gt;Web application development
C# can be used universally.&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  Getting started guide with official documentation
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Install C# Dev Kit from the Visual Sdudio Marketplace.→C# extension is installed automatically.&lt;/li&gt;
&lt;li&gt;Sign in with Microsoft to use Dev Kit
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qCTXKsu7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ujs6ijaotouoqqdxurw7.png" alt="Image description" width="366" height="99"&gt;
&lt;/li&gt;
&lt;li&gt;Install .Net Coding Pack from official document(&lt;a href="https://code.visualstudio.com/docs/csharp/get-started"&gt;https://code.visualstudio.com/docs/csharp/get-started&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Open folder
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir hello
cd hello
code .
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  Create a Hello World app
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Create a Hello World app by using the terminal&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open a terminal/command prompt and navigate to &lt;code&gt;hello/&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Enter the following command in the command shell&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; dotnet new console
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run the app by entering the following command in the command shell:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; dotnet run
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The resulting output to the terminal is "Hello, World!"&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>beginners</category>
      <category>csharp</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
