/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/csharp/fundamentals/tutorials/snippets/inheritance/simpleclass2.cs
15 строк
277 B
Bill Wagner
Update tutorials to .NET 6 (#28404)
28 фев 2022, 21:50
Не верифицирован
28 фев 2022, 21:50
0e4df77
Код
Авторство
О чём код?
// <Snippet1> public class EmptyClass { } public class ClassNameExample { public static void Main() { EmptyClass sc = new(); Console.WriteLine(sc.ToString()); } } // The example displays the following output: // EmptyClass // </Snippet1>