using System;
using System.Collections.ObjectModel;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
int[] intArray = { 5, 2, 3, 1, 6, 9, 7, 14, 25 };
Array.Sort(intArray);
int index = Array.BinarySearch(intArray,5);
Console.WriteLine("Array.BinarySearch(intArray, 5) = " + index);
Console.ReadKey();
}
}
}
'C#'' 카테고리의 다른 글
C# 스택오버플로우 (0) | 2015.12.16 |
---|---|
C# Array 리드 온리 (0) | 2015.12.16 |
C# function (0) | 2015.11.07 |
C# DLL파일 만들기 와 만드는 이유 (0) | 2015.11.06 |
C# 참조자복사 (0) | 2015.11.06 |