/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/GetObject/csharp/numberinfo.cs
33 строки
916 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
// <Snippet1> using System; [Serializable] public class Numbers2 { public readonly string One; public readonly string Two; public readonly string Three; public readonly string Four; public readonly string Five; public readonly string Six; public readonly string Seven; public readonly string Eight; public readonly string Nine; public readonly string Ten; public Numbers2(string one, string two, string three, string four, string five, string six, string seven, string eight, string nine, string ten) { this.One = one; this.Two = two; this.Three = three; this.Four = four; this.Five = five; this.Six = six; this.Seven = seven; this.Eight = eight; this.Nine = nine; this.Ten = ten; } } // </Snippet1>