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 parameter (a name) and prints a personalized greeting message, while SayGoodbye simply prints a farewell message. The Main method calls both functions, passing the appropriate argument to SayHello. This program shows how functions can accept and utilize parameters in C#.



Group

Functions in C#

Objective

1. Define a method called SayHello that takes a string parameter (a name) and prints a personalized greeting message using that name.
2. Define a method called SayGoodbye that prints a farewell message.
3. The Main method should call SayHello with a string parameter (e.g., "John") and then call SayGoodbye.
4. Run the program to observe the greeting and farewell messages displayed on the screen.

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

public static void Main()

{
SayHello("John");
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 with "John" as the parameter
        SayHello("John");

        // Call the SayGoodbye function
        SayGoodbye();
    }

    // Function to print a personalized greeting message
    public static void SayHello(string name)
    {
        // Display a hello message with the provided name
        Console.WriteLine($"Hello, {name}! Welcome to the program!");
    }

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

 Output

Hello, John! 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 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 ...

  • C# Function to Double an Integer

    This C# program defines a function named "Double" that accepts an integer as a parameter and returns the integer doubled. The program demonstrates how to work with simple mathemati...