private static void AddCallingConventions(MethodBase method, List<string> parts) { var callingConventions = method.GetCallingConventions(); if(callingConventions.Length > 0) { parts.Add(callingConventions); } }
private static void AddCallingConventions(MethodBase method, List<string> descriptors) { string callingConventions = method.GetCallingConventions(); if(callingConventions.Length > 0) { descriptors.Add(callingConventions); } }