/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/csharp-505-25-014/main.cs
15 строк
358 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public class Counter { private static int _totalCount = 0; public int InstanceId { get; } public Counter() { InstanceId = ++_totalCount; } public static int GetTotalCount() => _totalCount; } var c1 = new Counter(); // InstanceId = 1 var c2 = new Counter(); // InstanceId = 2 Console.WriteLine(Counter.GetTotalCount()); // 2