Change-Id: I67138414a61ba4594920830b4ad95e3f72b62e23
#undef __XSTR
+#if 0
static std::string replace(std::string &str, const std::string& from, const std::string& to)
{
size_t startPos = 0;
}
return str;
}
+#endif
static void smack_(const char* dllPath, const char* label)
{
{
try
{
- /// Set UnhandledException handler with reflection
- /// we must replace this to no reflection method after AppDomain is comming in used net standard
+ // Set UnhandledException handler with reflection
+ // we must replace this to no reflection method after AppDomain is comming in used net standard
TypeInfo appdomainType = Type.GetType("System.AppDomain").GetTypeInfo();
PropertyInfo currentDomain = appdomainType.GetProperty("CurrentDomain",
BindingFlags.Public | BindingFlags.Static);