13
열거 형을 통해 C # 반복? (System.Array 인덱싱)
다음 코드가 있습니다. // Obtain the string names of all the elements within myEnum String[] names = Enum.GetNames( typeof( myEnum ) ); // Obtain the values of all the elements within myEnum Array values = Enum.GetValues( typeof( myEnum ) ); // Print the names and values to file for ( …
113
c#
enums
iteration
system.array