Category: C#
C# Compiler Error – CS1599 the return type of a method, delegate, o
In this blog post, you’ll learn more about the C# Compiler Error – CS1599 and the related message description C# Compiler Error Code CS1599 C# Compiler Description for the Code :CS1599 The return type of a method, delegate, or function pointer cannot be ‘{0}’
C# Compiler Error – CS0837 the first operand of an ‘is’ or ‘as’ ope
In this blog post, you’ll learn more about the C# Compiler Error – CS0837 and the related message description C# Compiler Error Code CS0837 C# Compiler Description for the Code :CS0837 The first operand of an ‘is’ or ‘as’ operator may not be a lambda expression, anonymous method, or method group.
C# Compiler Error – CS8059 feature ‘{0}’ is not available in c# 6.
In this blog post, you’ll learn more about the C# Compiler Error – CS8059 and the related message description C# Compiler Error Code CS8059 C# Compiler Description for the Code :CS8059 Feature ‘{0}’ is not available in C# 6. Please use language version {1} or greater.
How to make a Phone Call from a Windows Phone 8.1 App ?
Below is a sample code snippet that demonstrates how to make a call from a Windows Phone 8.1 app in the Windows Runtime App Model. How to make a Phone Call from a Windows Phone 8.1 App ?
C# Compiler Error – CS1620 argument {0} must be passed with the ‘{1
In this blog post, you’ll learn more about the C# Compiler Error – CS1620 and the related message description C# Compiler Error Code CS1620 C# Compiler Description for the Code :CS1620 Argument {0} must be passed with the ‘{1}’ keyword
C# Compiler Warning – CS2008 no source files specified.
In this blog post, you’ll learn more about the C# Compiler Warning – CS2008 and the related message description C# Compiler Warning Code CS2008 C# Compiler Description for the Code :CS2008 No source files specified.
Developing Windows Phone 8 app using Web technologies like HTML5, CSS3 and JavaScript
Most of the time, the developers would want to use their existing skills and develop more apps targeting different and multiple platforms. For example, the Web developers might want to develop Windows phone apps using HTML, CSS, Java Script and other Web technologies that they know. Can the Windows Phone 8 app be developed using Web technologies like HTML5, CSS3 and JavaScript? Yes, the Web…
How to Calculate MD5 checksum for a file in C# ?
There are times when you want to calculate MD5 checksum for a file in C# and you can easily do that using System.Security.Cryptography.MD5 You can use the ComputeHash method of the MD5 instance by passing the stream. You can later it to Hex using the BitConverter so that you can represent it as string for conversion. How to Calculate MD5 checksum for a file in…
C# Compiler Error – CS0664 literal of type double cannot be implici
In this blog post, you’ll learn more about the C# Compiler Error – CS0664 and the related message description C# Compiler Error Code CS0664 C# Compiler Description for the Code :CS0664 Literal of type double cannot be implicitly converted to type ‘{1}’; use an ‘{0}’ suffix to create a literal of this type
C# Compiler Error – CS1737 optional parameters must appear after al
In this blog post, you’ll learn more about the C# Compiler Error – CS1737 and the related message description C# Compiler Error Code CS1737 C# Compiler Description for the Code :CS1737 Optional parameters must appear after all required parameters
C# Compiler Error – CS8154 the body of ‘{0}’ cannot be an iterator
In this blog post, you’ll learn more about the C# Compiler Error – CS8154 and the related message description C# Compiler Error Code CS8154 C# Compiler Description for the Code :CS8154 The body of ‘{0}’ cannot be an iterator block because ‘{0}’ returns by reference
C# Compiler Error – CS0526 interfaces cannot contain instance const
In this blog post, you’ll learn more about the C# Compiler Error – CS0526 and the related message description C# Compiler Error Code CS0526 C# Compiler Description for the Code :CS0526 Interfaces cannot contain instance constructors
C# Compiler Error – CS0592 attribute ‘{0}’ is not valid on this dec
In this blog post, you’ll learn more about the C# Compiler Error – CS0592 and the related message description C# Compiler Error Code CS0592 C# Compiler Description for the Code :CS0592 Attribute ‘{0}’ is not valid on this declaration type. It is only valid on ‘{1}’ declarations.
C# Compiler Error – CS0744 expected contextual keyword ‘equals’
In this blog post, you’ll learn more about the C# Compiler Error – CS0744 and the related message description C# Compiler Error Code CS0744 C# Compiler Description for the Code :CS0744 Expected contextual keyword ‘equals’
How to Sort dictionary by value in C#?
The Dictionary contains the KeyValuePair and the below is a sample code snippet that demonstrates the sorting of the dictionary entries by value in C#. How to Sort dictionary by value in C#?
C# Compiler Warning – CS8826 partial method declarations ‘{0}’ and ‘{
In this blog post, you’ll learn more about the C# Compiler Warning – CS8826 and the related message description C# Compiler Warning Code CS8826 C# Compiler Description for the Code :CS8826 Partial method declarations ‘{0}’ and ‘{1}’ have signature differences.
C# Compiler Warning – CS8613 nullability of reference types in return
In this blog post, you’ll learn more about the C# Compiler Warning – CS8613 and the related message description C# Compiler Warning Code CS8613 C# Compiler Description for the Code :CS8613 Nullability of reference types in return type of ‘{0}’ doesn’t match implicitly implemented member ‘{1}’.
C# Compiler Error – CS8058 feature ‘{0}’ is experimental and unsupp
In this blog post, you’ll learn more about the C# Compiler Error – CS8058 and the related message description C# Compiler Error Code CS8058 C# Compiler Description for the Code :CS8058 Feature ‘{0}’ is experimental and unsupported; use ‘/features:{1}’ to enable.
C# Compiler Error – CS8412 asynchronous foreach requires that the r
In this blog post, you’ll learn more about the C# Compiler Error – CS8412 and the related message description C# Compiler Error Code CS8412 C# Compiler Description for the Code :CS8412 Asynchronous foreach requires that the return type ‘{0}’ of ‘{1}’ must have a suitable public ‘MoveNextAsync’ method and public ‘Current’ property
C# Compiler Error – CS8705 interface member ‘{0}’ does not have a m
In this blog post, you’ll learn more about the C# Compiler Error – CS8705 and the related message description C# Compiler Error Code CS8705 C# Compiler Description for the Code :CS8705 Interface member ‘{0}’ does not have a most specific implementation. Neither ‘{1}’, nor ‘{2}’ are most specific.