If there are two modules with the same class name (disambiguated in C# via namespace), they result in overlapping output module names, e.g. two Point classes.
This disambiguates the output module name by suffixing _2, _3, etc in a linear search pattern.
If there are two modules with the same class name (disambiguated in C# via namespace), they result in overlapping output module names, e.g. two
Point
classes.This disambiguates the output module name by suffixing
_2
,_3
, etc in a linear search pattern.