Visual Studio compilation and runtime errors can come from various sources, including syntax mistakes, type mismatches, missing dependencies, or logic flaws in the code. Below is a categorized list of 100 common compilation and runtime errors encountered in Visual Studio, particularly for C++ and C# development.
1-50: Compilation Errors (C++ & C#)
Compilation errors occur when the code cannot be converted into machine-executable instructions due to syntax errors, type mismatches, or missing definitions.
Syntax Errors
- C2143: Syntax error: missing
;
before statement - C2146: Missing semicolon, expected something before identifier
- C2059: Syntax error: unexpected token
- C2065: Undeclared identifier
- C2001: Newline in constant
- C2017: Illegal escape sequence
- CS1002: C# syntax error: missing
;
- CS1513: Missing closing
}
- CS1026: Expected
)
but not found - CS1003: Syntax error: expected
,
or;
Type Mismatch Errors
- C2440: Cannot convert from
type1
totype2
- C2664: Function does not take arguments of this type
- C2039: Member does not exist in the given class
- C3861: Identifier not found (misspelled function name)
- C2106: Assignment to an incompatible type
- CS0029: Cannot implicitly convert type
A
toB
- CS0266: Implicit conversion failure
- CS1503: Argument type mismatch
- CS0030: Cannot cast
A
toB
- CS0122: Access to private or protected member is denied
Linker Errors (C++)
- LNK2001: Unresolved external symbol
- LNK2019: Unresolved external symbol in function
- LNK1104: Cannot open file
library.lib
- LNK1120: Number of unresolved externals
- LNK1168: Cannot open executable file for writing
- LNK1181: Cannot open input file
- LNK4217: Unresolved symbol imported in a DLL
- LNK1318: Corrupt PDB file
- LNK4075: Overlapping symbols in an object file
- LNK4099: PDB file not found
Preprocessor and Header Errors
- C1083: Cannot open include file
- C1189: #error directive encountered
- C4005: Macro redefinition
- C2061: Syntax error in typedef declaration
- C2220: Warning treated as an error
- CS0246: The type or namespace name could not be found
- CS0103: Name does not exist in current context
- CS0115: Method does not override any method from base class
- CS0501: Method must have a body
- CS0161: Not all code paths return a value
Object-Oriented Programming (OOP) Errors
- CS0535: Class does not implement all interface methods
- CS0108: Hides inherited member (add
new
modifier) - CS1501: No overload for method takes this number of arguments
- CS0117: Type does not contain a definition for the requested member
- CS0308: The non-generic method cannot be used with type arguments
- C2555: Overriding function return type does not match base class
- C2511: Member function definition does not match base class
- CS1061: Object does not contain a definition for the method or property
- CS7036: No suitable method found for constructor invocation
- CS1502: Best overload method match has invalid arguments
51-100: Runtime Errors
Runtime errors occur during program execution due to invalid memory access, division by zero, incorrect API calls, etc.
Memory Access Violations
- Access violation (0xC0000005): Dereferencing null or invalid pointer
- Stack overflow (0xC00000FD): Infinite recursion or excessive stack allocation
- Heap corruption (0xC0000374): Writing beyond allocated heap memory
- Double free error: Attempting to
free()
an already freed memory - Memory leak detected by AddressSanitizer
- Use-after-free error: Accessing a pointer after it has been deallocated
- C++ std::bad_alloc: Failed to allocate memory dynamically
- C++ out_of_range exception: Array or vector index out of range
- C++ std::length_error: Too large allocation request
- NullReferenceException (C#): Attempt to access a member on a
null
object
Arithmetic and Overflow Errors
- DivideByZeroException (C#)
- Floating point exception (C++)
- Integer overflow (C# checked context)
- ArithmeticException: Invalid mathematical operation
- StackOverflowException: Infinite recursion
- C4146: Unary minus applied to an unsigned type
- CS0592: Negative index on an array
File & IO Errors
- FileNotFoundException (C#)
- UnauthorizedAccessException: Cannot access file
- IOException: General IO operation failure
- EndOfStreamException: Unexpected end of stream
- Disk full error
Concurrency & Multithreading Errors
- Race condition (random crashes due to unsynchronized access)
- Deadlock: Two threads waiting on each other indefinitely
- ThreadAbortException
- InvalidOperationException on concurrent collection modifications
- C++ std::future_error: Broken promise
- Thread access to a disposed object
- C++ mutex double-lock error
Exception Handling Errors
- UnhandledException
- Stack unwinding failure in C++ (std::terminate)
- System.ArgumentException (invalid argument to function)
- IndexOutOfRangeException (accessing invalid array index)
- InvalidCastException (C# casting failure)
Networking & API Errors
- HTTP 404: Resource not found
- HTTP 500: Internal server error
- SocketException: Connection refused
- TimeoutException
- API method not found error
Configuration and Deployment Errors
- DLL Not Found Exception (Missing native dependency)
- CLR version mismatch (Common Language Runtime issue in .NET)
- Corrupt PDB file (debug symbols missing)
- Missing App.config or Web.config configuration
- WebAssembly runtime error
- Missing framework dependency in .NET Core
- Broken package reference in NuGet
- MSBuild target not found
- Manifest file missing in a ClickOnce deployment
- Failed to load assembly due to strong name validation failure
- Dynamic library failed to load at runtime (dlopen failure in Linux)
This list covers the most frequently encountered errors in Visual Studio for both C++ and C#. Would you like a deep dive into any particular category?