Top "System.array" questions

Serves as the base class for arrays.

C# Iterating through an enum? (Indexing a System.Array)

I have the following code: // Obtain the string names of all the elements within myEnum String[] names = Enum.GetNames( typeof( …

c# enums iteration system.array
Convert System.Array to string[]

I have a System.Array that I need to convert to string[]. Is there a better way to do this …

c# .net arrays system.array
casting system.array object to int[] string or other type's objects

I am learning c# and trying to understand the "type oriented" aspects of it. So the other day I needed …

c# system.array
Return array of strings from MVC to jQuery ASP.NET

I want to return an array of strings from an MVC function via a jQuery AJAX call. My client side …

jquery asp.net-mvc arrays system.array
System.Array does not contain a definition for 'Split'

I'm trying to take a string and split it. However, whenever I use fullName.Split Visual Studio says System.Array …

c# system.array