Array 類別是 C# 中所有陣列的基底類別。它定義在 System 命名空間中。
以下是C# 中Array 類別的方法-
#老師號 | 方法及說明 |
---|---|
##1
清除 |
|
2
Copy(Array, Array, Int32) |
|
3
CopyTo( Array, Int32) |
|
4
GetLength |
|
strong>5
GetLongLength |
|
p>6
GetLowerBound |
|
7
GetType |
|
8
#GetUpperBound |
|
9
GetValue(Int32) |
IndexOf(陣列、物件) | |
---|---|
11 Reverse(Array) | 反轉整個一維中元素的順序Array。 |
以下是C#中Array類別的屬性。 | Sr.No|
1
IsFixedSize |
|
2
IsReadOnly | |
3
Length |
using System; namespace Demo { class Program { static void Main(string[] args) { string string1, rev; string1 = "Level"; char[] ch = string1.ToCharArray(); Array.Reverse(ch); rev = new string(ch); bool b = string1.Equals(rev, StringComparison.OrdinalIgnoreCase); if (b == true) { Console.WriteLine("String " + string1 + " is a Palindrome!"); }else { Console.WriteLine("String " + string1 + " is not a Palindrome!"); } Console.Read(); } } }####
以上是C# 中 Array 類別的方法和屬性有何用處?的詳細內容。更多資訊請關注PHP中文網其他相關文章!