Simple C# Program with Functions

This C# program demonstrates the use of functions by defining two simple methods: SayHello and SayGoodbye. The Main method calls these functions sequentially to display a greeting message and a farewell message. This program serves as a basic introduction to how functions can be defined and called in C#.



Group

Functions in C#

Objective

1. Define a method called SayHello that prints a greeting message to the console.
2. Define a method called SayGoodbye that prints a farewell message to the console.
3. The Main method must call these functions in the specified order: first SayHello, then SayGoodbye.
4. Run the program to see the output of both functions.

Write a C# program whose Main must be like this:

public static void Main()

{
SayHello();
SayGoodbye();
}

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Main method where the program execution begins
    public static void Main()
    {
        // Call the SayHello function
        SayHello();

        // Call the SayGoodbye function
        SayGoodbye();
    }

    // Function to print a greeting message
    public static void SayHello()
    {
        // Display a hello message on the console
        Console.WriteLine("Hello, welcome to the program!");
    }

    // Function to print a goodbye message
    public static void SayGoodbye()
    {
        // Display a goodbye message on the console
        Console.WriteLine("Goodbye, thank you for using the program!");
    }
}

 Output

Hello, welcome to the program!
Goodbye, thank you for using the program!

Share this C# Exercise

More C# Practice Exercises of Functions in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • C# Program with Functions Accepting Parameters

    This C# program demonstrates the use of functions that accept parameters. The program defines two functions: SayHello and SayGoodbye. The SayHello function accepts a string paramet...

  • C# Program with a Function to Sum Two Numbers

    This C# program defines a function called Sum that accepts two integer parameters, adds them together, and returns the result. The Main method initializes two integer variables (x ...

  • C# Program to Count Spaces in a String

    This C# program defines a function called CountSpaces that accepts a string as a parameter and returns the number of spaces in that string. The Main method calls this function with...

  • C# Program to Write Centered Text

    This C# program defines a function called WriteCentered that takes a string as a parameter and writes it centered on the screen, assuming a screen width of 80 characters. The progr...

  • C# Program to Write Centered and Underlined Text

    This C# program defines a function called WriteUnderlined that takes a string as a parameter and writes it centered on the screen, assuming a screen width of 80 characters. After d...

  • C# Program to Calculate the Sum of the Elements in an Array

    This C# program defines a function called Sum that calculates the sum of the elements in an array. The Main method initializes an array with specific integer values and then calls ...