Skip to content

Commit

Permalink
Changed default access specifier for class in C# bindings (#163)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Zhang <[email protected]>
  • Loading branch information
zpgit and zpgit authored Sep 8, 2021
1 parent 3c146c7 commit 97e2c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/buildbindingcsharp.go
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ func buildBindingCSharpImplementation(component ComponentDefinition, w LanguageW
}
}

w.Writeln(" class C%s %s", class.ClassName, CSharpParentClassName)
w.Writeln(" public class C%s %s", class.ClassName, CSharpParentClassName)
w.Writeln(" {")

if component.isBaseClass(class) {
Expand Down

0 comments on commit 97e2c4c

Please sign in to comment.