C#에서 배열 초기화, 반전 및 정렬 사용 인스턴스

1225 단어
본고의 실례는 C# 중수조의 초기화, 반전과 정렬 용법을 설명하였다.여러분에게 참고하도록 공유하다.구체적으로 다음과 같다.
다음 코드에서는 C#에서 배열을 정의하고 초기화한 다음 값을 지정하고 정렬하고 반전시키는 방법을 보여 줍니다.

using System;
public class ArraySample
{
 public static void Main()
 {
  // Create and initialize a new array instance.
  Array strArr = Array.CreateInstance(typeof(string), 3);
  strArr.SetValue("Mahesh", 0);
  strArr.SetValue("chand", 1);
  strArr.SetValue("Test Array", 2);
  // Display the values of the array.
  Console.WriteLine("Initial Array values:");
  for(int i = strArr.GetLowerBound(0);i<=strArr.GetUpperBound(0);i++)
   Console.WriteLine(strArr.GetValue(i));
  //sort the value of the array.
  Array.Sort(strArr);
  Console.WriteLine("After sorting:");
  for(int i = strArr.GetLowerBound(0);i<=strArr.GetUpperBound(0);i++)
   Console.WriteLine(strArr.GetValue(i));
  // Reverse values of the array.
  Array.Reverse(strArr);
  for(int i = strArr.GetLowerBound(0);i<=strArr.GetUpperBound(0);i++)
   Console.WriteLine(strArr.GetValue(i));
 }
}

이 문서가 C# 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기