From 2f599daec06277bb119f9f1602086db5f15ac4b2 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Fri, 12 Jun 2015 01:31:30 +0300 Subject: [PATCH] C#-printed qualified names for template specialisations. Signed-off-by: Dimitar Dobrev --- src/Generator/Generators/CSharp/CSharpTypePrinter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs index c5cf2c27..1e77f3b8 100644 --- a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs +++ b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs @@ -364,7 +364,7 @@ namespace CppSharp.Generators.CSharp } } - return decl.Name + (ContextKind == CSharpTypePrinterContextKind.Native ? + return GetNestedQualifiedName(decl) + (ContextKind == CSharpTypePrinterContextKind.Native ? ".Internal" : string.Empty); }