HomeCSharpPage 35

CSharp

Showing 681 - 700 of 961 results
C# Compiler Error CS0205 – Cannot call an abstract base member: ‘method’ Reason for the Error You will receive this...
C# Error CS1954 – The best overloaded method match ‘{0}’ for the collection initializer element cannot be used. Collection initializer...
When developing an application using C# , one would have noticed the usage of String and string class . In...
C# Error CS8410 – ‘{0}’: type used in an asynchronous using statement must be implicitly convertible to ‘System.IAsyncDisposable’ or implement...
C# Error CS1705 – Assembly ‘{0}’ with identity ‘{1}’ uses ‘{2}’ which has a higher version than referenced assembly ‘{3}’...
Want to learn LINQ(Language Integrated Query) in .NET ? In this blog post , I will share links to some...
C# Error CS1028 – Unexpected preprocessor directive Reason for the Error & Solution Unexpected preprocessor directive A was found but...
Thanks to one of My friend (Anil pai) , who asked me a question on how to convert a string...
C# Error CS1017 – Catch clauses cannot follow the general catch clause of a try statement Reason for the Error...
C# Error CS1001 – Identifier expected Reason for the Error & Solution Identifier expected You did not supply an identifier....
C# Error CS1917 – Members of readonly field ‘{0}’ of type ‘{1}’ cannot be assigned with an object initializer because...
C# Error CS1529 – A using clause must precede all other elements defined in the namespace except extern alias declarations...
In statistics, the standard deviation is a measure of the amount of variation or dispersion of a set of values....
C# is a versatile programming language widely used in various applications. In this example, we will explore a straightforward C#...
This blog post will explain in simple steps how to the list of files within a directory using C#. Here’s a simple...
C# Compiler Error CS0267 – The partial modifier can only appear immediately before ‘class’, ‘record’, ‘struct’, ‘interface’, or a method...
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 CS1039 – Unterminated string literal Reason for the Error & Solution Unterminated string literal The compiler detected an...
C# Compiler Error CS0578 – The Conditional attribute is not valid on ‘function’ because its return type is not void...
C# Compiler Error CS0238 – ‘member’ cannot be sealed because it is not an override Reason for the Error You...