New Activity
Play Matching Game
1. constantes
2. datos integrados
3. byte
4. object
5. decimal
6. ushort
7. bool
8. char
9. string
10. un valor inicial diferente
11. definir valores enteros únicos

byte

int answer = 42; string greeting = "Hello, World!";

0 .. 255

True o False.

definir valores enteros únicos

dcarar un valor inicial diferente

datos integrados

Un carácter Unicode.

Una cadena de caracteres Unicode.

decimal

char

object

ushort

const int speedLimit = 55;

constante

string

enum Medal { Gold = 30, Silver = 20, Bronze = 10 };

-79228162514264337593543950335 .. 79228162514264337593543950335

0 .. 65,535

enum Color { Red = 1, Yellow = 2, Blue = 3 };

Un objeto.

bool