Main.cs
using
System;
struct
One {
-
//константа
-
public
const
decimal
PI = 3.14158m;
}
class
Program {
-
public
static
int
Main() {
-
//обратите внимание на доступ к константе
-
Console.WriteLine(One.PI);
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
struct
One {
-
//константа
-
public
const
decimal
PI = 3.14158m;
}
class
Program {
-
public
static
int
Main() {
-
//обратите внимание на доступ к константе
-
Console.WriteLine(One.PI);
-
Console.ReadKey();
-
return
0;
-
}
}
3,14158