/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlDocument/Overview/csharp/constants.cs
24 строки
849 B
Genevieve Warren
Remarks from System.Xml* types (#38946)
03 янв 2024, 21:01
Не верифицирован
03 янв 2024, 21:01
eeaee26
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLProcessingApp { public static class Constants { public const string positionTop = "Top"; public const string positionBottom = "Bottom"; public const string positionAbove = "Above selected item"; public const string positionBelow = "Below selected item"; public const int lengthOfNamespaceDeclaration = 37; public const string booksFileName = "booksData.xml"; public const string Title = "Title"; public const string Genre = "Genre"; public const string PubDate = "Publish Year"; public const string Price = "Price"; public const string ISBN = "ISBN"; public const string Condition = "Condition"; public const string Excludes = "Excludes"; } }