handzlikchris / handzlikchris/FastScriptReload
Singleton initalization type is not properly rewritten
Abierto
bug
- Lenguaje dominante
- C#
- Estrellas
- 2.2k
- Forks
- 167
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
```
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()
{
}
}
```
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.