Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
İs there any method taht convert all items in a string array to an int array String[] --> int[] ???
karanba
try to convert string array items to integer and add it to int array one by one int[0]=int.Parse(String[0]); . . . .
rahul
Check out the Array.ConvertAll<> method.
--- b { font-weight: normal; }
thank array.convert.all work fine for me