Bạn chưa biết về mảng(Array) hãy xem qua bài viết Mảng/Array là gì? trước khi xem bài viết này. Trong bài viết này tôi sẽ hướng dẫn cách lấy chiều dài của một mảng trong C#.
Array Length Method:
Phương thức length() được cung cấp trong lớp Array được sử dụng để đếm chiều dài của một chuỗi, cú pháp của phương thức này như sau:
Array.Length;
Ví dụ - Example:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Author: developer.bnson@gmail.com
// Website: vnlives.net
namespace HowToGetLengthOfArray
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = new string[4];
int len = arrStr.Length;
Console.WriteLine("Length of arrStr is: " + len);
arrStr[0] = "Welcome";
arrStr[1] = "you";
arrStr[2] = "to";
arrStr[3] = "VNLIVES.NET";
foreach (string tmpStr in arrStr)
{
Console.WriteLine(tmpStr + " ");
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Author: developer.bnson@gmail.com
// Website: vnlives.net
namespace HowToGetLengthOfArray
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = new string[4];
int len = arrStr.Length;
Console.WriteLine("Length of arrStr is: " + len);
arrStr[0] = "Welcome";
arrStr[1] = "you";
arrStr[2] = "to";
arrStr[3] = "VNLIVES.NET";
foreach (string tmpStr in arrStr)
{
Console.WriteLine(tmpStr + " ");
}
Console.ReadLine();
}
}
}
Kết quả - Result:
No comments:
Post a Comment