(string methodName)
| 360 | }; |
| 361 | |
| 362 | public static string CSharpMethodToCppMethod(string methodName) |
| 363 | { |
| 364 | if (CSharpToCppMethodMap.ContainsKey(methodName)) |
| 365 | { |
| 366 | return CSharpToCppMethodMap[methodName]; |
| 367 | } |
| 368 | |
| 369 | return methodName; |
| 370 | } |
| 371 | |
| 372 | private static string GetTypeFullName(Type type) |
| 373 | { |
no outgoing calls
no test coverage detected