Click here to Skip to main content
15,890,947 members

Comments by Member 12101107 (Top 8 by date)

Member 12101107 23-Dec-15 13:31pm View    
As you said ,I spend all the day working with list (of list)changing all my code to be suitable to it,but at point of find max I Could find it and convert it's row to array ,but still have problem with deleting this row
Member 12101107 23-Dec-15 4:11am View    
Well, do you mean list of lists,to be honest I'm never work with it's so can I deal with it like 2D array
Member 12101107 29-Nov-15 3:48am View    
Thanks ,it is working
Member 12101107 29-Nov-15 3:10am View    
OK ,suppose that an integer array is {1,2,3} it will be {1,2,3} as string
Member 12101107 28-Nov-15 13:40pm View    
I mean 1 not one this is my code

Function ConvertIntToString(ByVal intParameter As Integer)

Return intParameter.ToString()

End Function

Function test(ByVal m() As Integer)

Dim ss() As String = Array.ConvertAll(int,string) ( m,new Converter(int,string)
(ConvertIntToString)


End Function