/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/csharp-505-25-005/main.cs
14 строк
521 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public static class MathUtils // static class — нельзя создать экземпляр { public const double PI = 3.14159; // константа (неявно static) public static int Square(int x) => x * x; static MathUtils() // статический конструктор (вызывается 1 раз) { Console.WriteLine("Класс загружен"); } } // Использование (как в Java) int result = MathUtils.Square(5);