I have 10 data's in string array.In this 10 data, each of the data's could be integer/string/double/DateTime format. based on these 10 datatype we have to find common datatype.

Eg1: string["10","20","3","45"] -> o/p: int.

Eg2: string["10","2o","3","4","5.0","4","56"] -> o/p : float.

Eg3: string["10","20.5","ten","45"] -> o/p: string

link|improve this question

59% accept rate
Did you mean to ask a question? – Stuart Dunkeld Nov 16 '11 at 15:38
feedback

1 Answer

up vote 0 down vote accepted

Iterate : TryParse double, TryParse Int, TryParse DateTime, or string. Done.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.