HomeCSharpPage 21

CSharp

Showing 401 - 420 of 961 results
C# Error CS1103 – The first parameter of an extension method cannot be of type ‘{0}’ Reason for the Error...
C# Error CS1007 – Property accessor already defined Reason for the Error & Solution Property accessor already defined When you...
C# Compiler Error CS0544 – ‘property override’: cannot override because ‘non-property’ is not a property Reason for the Error You...
C# Error CS8149 – By-reference returns may only be used in methods that return by reference Reason for the Error...
There are times when the developers would encounter scenarios where they need to generate a random alphanumeric string to be...
C# Error CS1661 – Cannot convert {0} to type ‘{1}’ because the parameter types do not match the delegate parameter...
The Local Type Inference is also called as Implicitly Types Local Variables in C# and is an easy way to...
In this C# tips & tricks post , we will look at a simple usage of LINQ in C# to...
C# 6.0 Features Series How to try C# 6.0 and Rosyln? Getter-only (Read Only) Auto Properties in C# 6.0 Lambda...
C# Error CS1729 – ‘{0}’ does not contain a constructor that takes {1} arguments Reason for the Error & Solution...
C# Error CS1631 – Cannot yield a value in the body of a catch clause Reason for the Error &...
C# Error CS0663 – ‘{0}’ cannot define an overloaded {1} that differs only on parameter modifiers ‘{2}’ and ‘{3}’ Reason...
C# Compiler Error Message Operator ‘{0}’ cannot be applied to operands of type ‘{1}’ and ‘{2}’ Reason for the Error...
I came across the requirement to use the “IN” equivalent of LINQ when using Entity Framework . I am sure...
C# Compiler Error CS0113 – A member ‘function’ marked as override cannot be marked as new or virtual Reason for...
C# Error CS0559 – The parameter type for ++ or — operator must be the containing type Reason for the...
Sometimes , it may be necessary for the C# developers to loop through or iterate over all the Enum Values...
Are you looking out for the C# libraries that lets the developers create excel file programmatically ? . Below is...
C# Error CS2007 – Unrecognized option: ‘{0}’ Reason for the Error & Solution Unrecognized command-line option: ‘option’ The compiler was...
C# Error CS0620 – Indexers cannot have void type Reason for the Error & Solution Indexers cannot have void type...