using System; namespace Example10 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { Console.WriteLine(Min(3,2)); } static bool Min(double x, int y) { return x < y; } static bool Min(int x, double y) { return x < y; } } }