public static void Main()
Console.WriteLine("Hello World Divide " + DividePositiveNos(3, 33));
public static int MultiplyPositiveNos(int a, int b, int res = 0)
if(!(a >= 0) && !(b >= 0))
return MultiplyPositiveNos(a, b, result);
public static int DividePositiveNos(int a, int b, int counter = 0)
return DividePositiveNos(a, b, counter);
public static void Swap(ref int a, ref int b)
public static Singleton _instance;
public static object lockObject;
public Singleton Instance()
_instance = new Singleton();