Bài viết này sẽ hướng dẫn về phép nối chuỗi trong ngôn ngữ lập trình CSharp.
Để nối hai chuỗi trong C# ta sử dụng phép công theo cấu trúc sau:
str = str01 + str02 + str02 ...
Dưới đây là mộ ví dụ nhỏ để mô tả phương pháp này.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HowtoConcatenationString
{
class Program
{
static void Main(string[] args)
{
string str;
string str01 = "VN";
string str02 = "LIVES";
string str03 = ".";
string str04 = "NET";
str = str01 + str02 + str03 + str04;
Console.WriteLine("String concatenation is: " + str);
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HowtoConcatenationString
{
class Program
{
static void Main(string[] args)
{
string str;
string str01 = "VN";
string str02 = "LIVES";
string str03 = ".";
string str04 = "NET";
str = str01 + str02 + str03 + str04;
Console.WriteLine("String concatenation is: " + str);
Console.ReadLine();
}
}
}
Kết quả sau khi thực thi chương trình sẽ là:
No comments:
Post a Comment