c sharp making our custom function

Code Example - c sharp making our custom function

                
                        //making own function
void CustomFunction()
{
Console.Writeline("we started our own function :D ");
}
//starting the customfunction
CustomFunction();