Converting Array Type in C# [duplicate]
Possible Duplicate:
Convert string[] to int[] in one string of code using LINQ
I have an array of strings I want to c开发者_JAVA百科onvert it to array of int
is there any way to convert it directly without looping
I mean without use foreach, for , LINQ select statement, etc.
Any suggestion please.
Array.ConvertAll: http://msdn.microsoft.com/en-us/library/exc45z53.aspx
精彩评论