Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 배열 인스턴스에 Hashtable 요소 복사

<시간/>

Hashtable 요소를 Array 인스턴스에 복사하기 위한 코드는 다음과 같습니다-

시스템 사용, System.Collections 사용, public class Demo { public static void Main(){ Hashtable 해시 =new Hashtable(); 해시.추가("1", "AB"); hash.Add("2", "CD"); hash.Add("3", "EF"); hash.Add("4", "GH"); hash.Add("5", "IJ"); Console.WriteLine("해시 테이블 키 및 값 쌍..."); foreach(해시에서 DictionaryEntry 항목){ Console.WriteLine("{0} 및 {1} ", entry.Key, entry.Value); } Console.WriteLine("배열 인스턴스에 복사..."); DictionaryEntry[] dictArr =새로운 DictionaryEntry[hash.Count]; 해시.CopyTo(dictArr, 0); for (int i =0; i