Nếu bạn chưa biết về mảng(Array) hãy tham khảo qua trước bài viết Mảng/Array là gì?. Trong bài viết này tôi sẽ giới thiệu bài tập khai báo mảng chuỗi(declare string array) trong C#.
HowToDeclareStringArray.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Author: developer.bnson@gmail.com
// Website: vnlives.net
namespace HowToDeclareStringArray
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = new string[4];
arrStr[0] = "Welcome";
arrStr[1] = "you";
arrStr[2] = "to";
arrStr[3] = "VNLIES.NET";
foreach (string tmpStr in arrStr)
{
Console.Write(tmpStr + " ");
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Author: developer.bnson@gmail.com
// Website: vnlives.net
namespace HowToDeclareStringArray
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = new string[4];
arrStr[0] = "Welcome";
arrStr[1] = "you";
arrStr[2] = "to";
arrStr[3] = "VNLIES.NET";
foreach (string tmpStr in arrStr)
{
Console.Write(tmpStr + " ");
}
Console.ReadLine();
}
}
}
Kết quả - Result:
No comments:
Post a Comment