public void c# code example

Example 1: c# void

// You use void as the return type of a method (or a local function)
// to specify that the method doesn't return a value.
class Program
{
    public void Main()
    {
      TestVoid();
    }
    public void TestVoid()
    {
        Console.WriteLine("This does not return anything.");
    }
}

Example 2: how to call a method from a class in c#

using System;

namespace CalculatorApplication {
   class NumberManipulator {
      public int FindMax(int num1, int num2) {
         /* local variable declaration */
         int result;
         
         if (num1 > num2)
            result = num1;
         else
            result = num2;
         return result;
      }
      
      static void Main(string[] args) {
         /* local variable definition */
         int a = 100;
         int b = 200;
         int ret;
         NumberManipulator n = new NumberManipulator();

         //calling the FindMax method
         ret = n.FindMax(a, b);
         Console.WriteLine("Max value is : {0}", ret );
         Console.ReadLine();
      }
   }
}