Skip to content

Commit 97e2c4c

Browse files
authored
Changed default access specifier for class in C# bindings (#163)
Co-authored-by: Kevin Zhang <Ping.Zhang@autodesk.com>
1 parent 3c146c7 commit 97e2c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/buildbindingcsharp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ func buildBindingCSharpImplementation(component ComponentDefinition, w LanguageW
979979
}
980980
}
981981

982-
w.Writeln(" class C%s %s", class.ClassName, CSharpParentClassName)
982+
w.Writeln(" public class C%s %s", class.ClassName, CSharpParentClassName)
983983
w.Writeln(" {")
984984

985985
if component.isBaseClass(class) {

0 commit comments

Comments
 (0)