HomeCSharpPage 36

CSharp

Showing 701 - 720 of 961 results
C# Compiler Error CS0546 – ‘accessor’ : cannot override because ‘property’ does not have an overridable set accessor Reason for...
C# Error CS0755 – Both partial method declarations must be extension methods or neither may be an extension method Reason...
C# Error CS1056 – Unexpected character ‘{0}’ Reason for the Error & Solution Unexpected character ‘character’ The C# compiler encountered...
C# Error CS1023 – Embedded statement cannot be a declaration or labeled statement Reason for the Error & Solution Embedded...
I had the privilege of working on some of the interesting languages like Delphi, Oxygene, C# etc. All the languages...
C# Compiler Error CS0193 – The * or -> operator must be applied to a pointer Reason for the Error...
C# Error CS9050 – A ref field cannot refer to a ref struct. Reason for the Error & Solution A...
C# Error CS0715 – ‘{0}’: static classes cannot contain user-defined operators Reason for the Error & Solution ‘static class’ :...
C# Error CS0745 – Expected contextual keyword ‘by’ Reason for the Error & Solution Expected contextual keyword ‘by’ The pattern...
C# Error CS1938 – The name ‘{0}’ is not in scope on the right side of ‘equals’. Consider swapping the...
C# Error CS0576 – Namespace ‘{1}’ contains a definition conflicting with alias ‘{0}’ Reason for the Error & Solution Namespace...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...
C# Error CS0748 – Inconsistent lambda parameter usage; parameter types must be all explicit or all implicit Reason for the...
C# Compiler Error CS0144 – Cannot create an instance of the abstract class or interface ‘interface’ Reason for the Error...
There may be a requirement of getting the user's IP address using ASP.NET and C# or VB .NET when a...
C# Compiler Error CS0543 – ‘enumeration’ : the enumerator value is too large to fit in its type Reason for...
This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
C# Error CS1913 – Member ‘{0}’ cannot be initialized. It is not a field or property. Reason for the Error...
C# Error CS2013 – Invalid image base number ‘{0}’ Reason for the Error & Solution Invalid image base number ‘value’...
C# Error CS0590 – User-defined operators cannot return void Reason for the Error & Solution User-defined operators cannot return void...