HomeCSharpPage 14

CSharp

Showing 261 - 280 of 961 results
C# Error CS1599 โ€“ The return type of a method, delegate, or function pointer cannot be โ€˜{0}โ€™ Reason for the...
C# Error CS8161 โ€“ A static readonly field cannot be returned by writable reference Reason for the Error & Solution...
C# Error CS1020 โ€“ Overloadable binary operator expected Reason for the Error & Solution Overloadable binary operator expected An attempt...
This blog post will explain what is a BigInteger and why we need it in C#. When talking to one...
C# Compiler Error CS0535 โ€“ โ€˜classโ€™ does not implement interface member โ€˜memberโ€™ Reason for the Error Youโ€™ll get this error...
C# Error CS0811 โ€“ The fully qualified name for โ€˜{0}โ€™ is too long for debug information. Compile without โ€˜/debugโ€™ option....
Below is a sample code snippet demonstrating how the entries can be added to the ResourceDirectory in WPF application using...
C# Error CS0644 โ€“ โ€˜{0}โ€™ cannot derive from special class โ€˜{1}โ€™ Reason for the Error & Solution โ€˜class1โ€™ cannot derive...
C# 6.0 Features How to try C# 6.0 and Rosyln? Getter-only (Read Only) Auto Properties in C# 6.0 Lambda and...
C# Compiler Error CS0568 โ€“ Structs cannot contain explicit parameterless constructors Reason for the Error You will get this error...
This C# program calculates the sum of digits of a given number using a recursive function. Problem statement You are...
C# Error CS1520 โ€“ Method must have a return type Reason for the Error & Solution Method must have a...
This C# program retrieves and displays the IP (Internet Protocol) address of the computer on which it is executed. The...
C# Error CS0666 โ€“ โ€˜{0}โ€™: new protected member declared in struct Reason for the Error & Solution โ€˜memberโ€™ : new...
C# Error CS1655 โ€“ Cannot use fields of โ€˜{0}โ€™ as a ref or out value because it is a โ€˜{1}โ€™...
Do you want to merge string arrays and yet want to keep the distinct values in C# ? . One...
C# Error CS2011 โ€“ Error opening response file โ€˜{0}โ€™ Reason for the Error & Solution Unable to open response file...
C# Error CS1527 โ€“ Elements defined in a namespace cannot be explicitly declared as private, protected, protected internal, or private...
C# Error CS2035 โ€“ Command-line syntax error: Missing โ€˜:โ€˜ for โ€˜{0}โ€™ option Reason for the Error & Solution Command-line syntax...
C# Compiler Error CS0526 โ€“ Interfaces cannot contain instance constructors Reason for the Error Youโ€™ll get this error in your...