C# String Concat() Method
You are Here:
C# String Concat()
The Concat()
method appends the source string to the destination string.
A concatenation of two strings can be done using this method.
Example
C# Compiler
using System;
namespace myApp
{
class Program
{
static void Main(string[] args)
{
string src = ".com";
string dest = "wikimass";
string res = string.Concat(dest, src);
Console.WriteLine("{0} is for programmers", res);
}
}
}
Output
wikimass.com is for programmers
Syntax
string.Concat(dest, src)
Parameter Values
Value | Type | Explanation |
---|---|---|
dest | Required | Specifies the destination string. |
src | Required | Specifies the source string. |
Return Value
Value | Explanation |
---|---|
String | Returns a string where the source string is appended to the destination string. |
More Example
You can also use '+' arithmetic operator to concatenate two strings.
Example
C# Compiler
using System;
namespace myApp
{
class Program
{
static void Main(string[] args)
{
string src = ".com";
string dest = "wikimass";
string res = dest + src;
Console.WriteLine("{0} is for programmers", res);
}
}
}
Output
wikimass.com is for programmers
Reminder
Hi Developers, we almost covered 90% of String functions and Interview Question on C# with examples for quick and easy learning.
We are working to cover every Single Concept in C#.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.