Home » C# String Concat() method

C# String Concat() method

by Online Tutorials Library

C# String Concat()

The C# Concat() method is used to concatenate multiple string objects. It returns concatenated string. There are many overloaded methods of Concat().

Signature

Parameters

It takes two String object arguments.

Return

It returns a string object.


C# String Concat() Method Example

Output:

Hello C# 

You may also like