diff options
Diffstat (limited to 'xmake/templates/csharp/shared/src/foo.cs')
| -rw-r--r-- | xmake/templates/csharp/shared/src/foo.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/templates/csharp/shared/src/foo.cs b/xmake/templates/csharp/shared/src/foo.cs new file mode 100644 index 000000000..bba30d999 --- /dev/null +++ b/xmake/templates/csharp/shared/src/foo.cs @@ -0,0 +1,7 @@ +namespace Foo; + +public class Foo { + public static int Add(int a, int b) { + return a + b; + } +} |
