We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c66d6a commit cbf5109Copy full SHA for cbf5109
source/MetadataProcessor.Core/Utility/NativeMethodsCrc.cs
@@ -67,7 +67,8 @@ internal static string GetMethodName(
67
var name = string.Concat(method.Name, (method.IsStatic ? "___STATIC__" : "___"),
68
string.Join("__", GetAllParameters(method)));
69
70
- var originalName = name.Replace(".", "_");
+ var originalName = name.Replace(".", "_")
71
+ .Replace("/", "");
72
73
return originalName;
74
}
0 commit comments