Untitled
Anonymous
plain_text
08/08/2024 8:26 PM
412 B
23
Indexable
public static class ServiceLocator<T> where T : class
{
private static T _value;
public static T Get()
{
return _value;
}
public static T Set(T value)
{
_value = value;
return _value;
}
}Editor is loading...
Leave a Comment