Category: C#
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.