Tagged Questions
1
vote
4answers
6k views
No overload for 'insert_method_here' matches delegate 'System.EventHandler'
I am trying to build a program that has a button, and everytime that button is clicked, it moves the button and adds to the score. However, I am trying to disable the Enter key, or suppress the ...
1
vote
2answers
580 views
FXCop Suppress Warning CA1800 (Unnecessary Casts)
I have the following code:
[SuppressMessage( "Microsoft.Performance", "CA1800:DoNotCastUnnecessarily" )]
private static void SetTestConnectionString( Component table )
{
if( table is Object1 )
...
0
votes
1answer
151 views
Exception clogging up my IDE
I'm scanning for dead links on one of my pages. On one i get many "A first chance exception of type 'System.Net.WebException' occurred in System.dll" Dozens of them. How do i have MSVC# NOT display ...