• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

.NET Error?

Schmave

[H]ard|Gawd
Joined
Jan 2, 2001
Messages
1,720
I'm trying to get an open source project to run in MS Visual Studio 2005. The error is:

Field not found: 'System.Collections.Generic.KeyValuePair `2.Key'

I have .NET framework 2.0 for WinXP x64 installed. It seems like this would be a .NET error, but I don't know how to fix it. Has anyone seen this error and knows how to fix it?
 
It's laughable to ask someone to tell you how to fix this without any other information.

Is this error appearing at compile time or runtime? I'd have to guess at compile time. So then we'd have to see the source code that's invovled.
 
mikeblas said:
It's laughable to ask someone to tell you how to fix this without any other information.

Is this error appearing at compile time or runtime? I'd have to guess at compile time. So then we'd have to see the source code that's invovled.

QFT.
 
make sure you have a "using System.Collections.Generic;" statement in the file giving the error (and that looks like a runtime error to me, my guess is that someone it trying to reflect into a key value pair from inside an app domain w/ no assemblies loaded)
 
Back
Top