/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/InvalidCastException/Overview/csharp/ToString2.cs
15 строк
269 B
Genevieve Warren
Remarks for exception types and Registry class (#38930)
03 янв 2024, 22:30
Не верифицирован
03 янв 2024, 22:30
932bcca
Код
Авторство
О чём код?
// <Snippet5> using System; public class ToStringEx2 { public static void Main() { object value = 12; string s = value.ToString(); Console.WriteLine(s); } } // The example displays the following output: // 12 // </Snippet5>