- My OS for test is ubuntu
dotnet new [web|console|...]
dotnet run
- import
using Something
- Print
System.Console.WriteLine()
- Comment
//
and/**/
- Variable
int thisIsMyVariable=12;
- Primitives
int
[-2147483648, 2147483647]
double
bool
char
string
float
long
[-9223372036854775808, 9223372036854775807]
- Implicit
- Explicit
(int) 12.4F
System.Convert.ToInt16()
System.Convert.ToInt32()
System.Convert.ToInt64()
const [int|bool|...]
ReadLine()
WriteLine()