English books
C# to the Point
.NET Appl. Development
German books
Kompaktkurs C# 7
Die .NET-Technologie
Home
Course Material
Applications
Projects
Ergebnistyp von Ausdrücken
short s = 1; int i = 2; long x = 3; float f = 4f; char c = 'a'; Color col = Color.red;
Ausdruck
Ergebnistyp
s + 1
int
s + 100000000000
long
i + f
float
c + 1
int
col + 1
Color
10 * x + (x - '0')
long
s + 1.0
double