We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42c770d + 72898b5 commit ab13a50Copy full SHA for ab13a50
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/c#/angel-tineo.cs
@@ -0,0 +1,20 @@
1
+//https://dotnet.microsoft.com/en-us/
2
+
3
+//Ejemplo de comentario simple
4
+/*
5
+ Ejemplo comentarios
6
+ en varias lineas
7
+*/
8
9
+var Variable = 1;
10
+const int CONSTANTE = 3;
11
12
+int MyInt = 2;
13
+float MyFlot = 3.14f;
14
+double MyDoble = 3.14;
15
+bool MyBool = true;
16
+decimal MyDecimal = 1.5m;
17
+char MyChar = 'a';
18
+string MyString = "Cadena";
19
20
+Console.WriteLine("Hola, C#");
0 commit comments