Quote:
Originally Posted by gbianchi
yes, you just need to add the using needed for every object that thrown that error.
|
I am using LinkedList in my code. It's giving error on
Code:
String strValue = lstMyList<String>(i);
I have added:
Code:
using system.collection.generic;
using System.Linq;
and
using System;
I am still getting errors.
What else do i need to add?
In fact even after setting the version back to 3.5 all my references under References node are still pointing to a directory of .Net Version 2.0
I suspect therein lies my problem.