C# C# Console Methods

Method Declaration in C#

Method is the building block of object-oriented programming. It combines related code together and makes program easier. In C# method declaration, you can declare method by following way:

Example:

In the preceding example, the public is an access specifier,  void  is a return data type that return nothing and add() is a method name. There is no parameter define in add() method.

If the function returns integer value, then you can define function as follow:

If the function is returning string value, then you can define function as follow:

You must remember, whenever use return data type with method, must return value using return keyword from body. If you don’t want to return any value, then you can use void data type.

Programming Example

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.