You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
public class SingletonTest
{
private static SingletonTest _instance;
public static SingletonTest Instance
{
get
{
if (_instance == null)
{
_instance = new SingletonTest(); //Won't be rewritten to __Patched_ version, even with AllPatchedIdentifiersRewriter enabled
}
return _instance;
}
}
private SingletonTest()
{
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: