ougge/src-csharp/A.cs
2024-09-10 20:28:11 +05:00

18 lines
389 B
C#

using System;
class A {
public int a = 0;
public int b = 0;
public int c = 0;
static public int Method(){
return 0;
}
static public int Method(float f, byte b){
return 1;
}
static public int Method(byte b, float f){
Console.WriteLine($"Hello from C#! Received arguments: b={b} f={f}");
return 2;
}
}