diff --git a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs index 997b8b26..49d230da 100644 --- a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs +++ b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs @@ -161,7 +161,8 @@ namespace Cxxi.Generators.CSharp // Generate all the struct/class declarations for the module. foreach (var @class in @namespace.Classes) { - if (@class.Ignore) continue; + if (@class.Ignore || @class.IsIncomplete) + continue; GenerateClass(@class); NewLine();