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 88d79af commit a8e45bcCopy full SHA for a8e45bc
BHoM_Engine/Compute/ExtractAssembly.cs
@@ -164,7 +164,7 @@ private static void ExtractMethods(Assembly asm)
164
// Get only the BHoM methods
165
if (!type.IsInterface && type.IsAbstract)
166
{
167
- foreach (MethodInfo info in type.GetMethods(bindingBHoM).Where(x => x.IsLegal()))
+ foreach (MethodInfo info in type.GetMethods(bindingBHoM).Where(x => x.IsLegal() && !x.IsSpecialName))
168
169
Global.BHoMMethodList.Add(info);
170
}
0 commit comments