Tag: system.array

将System.Array转换为string

我有一个System.Array,我需要转换为string[]。 有没有更好的方法来做到这一点,只是循环访问数组,每个元素调用ToString,并保存到一个string[]? 问题是我不一定知道元素的types,直到运行时。

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 ( int i = 0; i < names.Length; […]