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