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...