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; } }