/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/core/extensions/snippets/configuration/console-basic-builder/Program.cs
13 строк
288 B
David Pine
Added section about ConfigurationBuilder (#36328)
19 июл 2023, 20:41
Не верифицирован
19 июл 2023, 20:41
a47c002
Код
Авторство
О чём код?
using Microsoft.Extensions.Configuration; var configuration = new ConfigurationBuilder() .AddInMemoryCollection(new Dictionary<string, string?>() { ["SomeKey"] = "SomeValue" }) .Build(); Console.WriteLine(configuration["SomeKey"]); // Outputs: // SomeValue