Hello I'm working on C# asp.net application. the problum which I'm facing is when I debug the code in side the class liberary I got following exception.
cannot evaluate expression because debugging information has not been optimized away
when I debug the get porting of the following code.
public class AccountantCollection<T> : List<AccountantObject>
{
public new T this[int index]
{
get
{
return this[index];
}
set
{
this[index] = value;
}
}
}
I'd be very thank full if some body can help me out with this.