Click here to Skip to main content
15,886,640 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to convert object into system,collection.generic list<string>
Posted

What to you mean by the word "convert"? If some object is not a list, that is, if its actual run-time type is not a list, you cannot magically make it a list. If your try to cast it directly, it will throw the exception is the run-time type of object is not assignment compatible, and the dynamic case using as operator will return null. Besides, you should avoid the situation where type case is required in first place.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900