13
सी # एक Enum के माध्यम से Iterating? (एक 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 …
113
c#
enums
iteration
system.array