Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

.Net

01. C#

  • Basic

filename.cs
using System;

namespace h4rithd
{
    class welcome
    {
        static void Main(string[] args)
        {
            Console.WriteLine("welcome to h4rithd.com\r\n");
        }
    }
}
  • Complie

## ------------------| Choose version
dir dir c:\Windows\Microsoft.NET\Framework64\v*
dir c:\Windows\Microsoft.NET\Framework\v*

## ------------------| Complie
c:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe filename.cs 
dir ! find "filename.exe"
.\filename.exe
  • Debug

02. DotNet Core

02.1 Getting Started

02.2 Create Applications

CLI Application

ASP.NET Core

DLL Application

Last updated