mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
14 lines
252 B
C#
14 lines
252 B
C#
namespace System.Configuration;
|
|
|
|
public sealed class DefaultOptionsManager : IOptionsManager
|
|
{
|
|
public T GetOptions<T>() where T : class
|
|
{
|
|
return default;
|
|
}
|
|
|
|
public void UpdateOptions<T>(T value) where T : class
|
|
{
|
|
}
|
|
}
|