Category: C#

How to Configure Default Application Tile of an App in Windows Phone 8 ?

The Windows Phone 8 SDK provides the developers with the option to configure the default tile template and provide various values for the Tile title , tile images and also select tile template . How to Configure Default Application Tile of an App in Windows Phone 8 ? To configure the default application tile of an app in Windows Phone 8 , follow the below steps….

C# Compiler Error – CS0413 the type parameter ‘{0}’ cannot be used

In this blog post, you’ll learn more about the C# Compiler Error – CS0413 and the related message description C# Compiler Error Code CS0413 C# Compiler Description for the Code :CS0413 The type parameter ‘{0}’ cannot be used with the ‘as’ operator because it does not have a class type constraint nor a ‘class’ constraint

How to Not Allow Windows Phone devices to install App which don’t meet Requirements ?

There are times when you want to disable or not allows the Windows Phone devices to install the WP8 app that doesn’t meet the specific hardware requirements . How to Not Allow Windows Phone devices to install App which don’t meet Requirements ? You can do it by setting the requirements in the WMAppManifest.xml file. The Windows Phone Application manifest file includes a tab called…

C# Compiler Warning – CS1762 a reference was created to embedded inte

In this blog post, you’ll learn more about the C# Compiler Warning – CS1762 and the related message description C# Compiler Warning Code CS1762 C# Compiler Description for the Code :CS1762 A reference was created to embedded interop assembly ‘{0}’ because of an indirect reference to that assembly created by assembly ‘{1}’. Consider changing the ‘Embed Interop Types’ property on either assembly.

How to find if the character entered is Digit in C# ?

The Char class provides a method Char.IsDigit that lets you find if the character entered in the specid string is a digit or not. How to find if the character entered is Digit in C# ? Below is a sample code demonstrating the Char.IsDigit to find if the character entered is Digit in C#.

C# Compiler Error – CS1061 ‘{0}’ does not contain a definition for

In this blog post, you’ll learn more about the C# Compiler Error – CS1061 and the related message description C# Compiler Error Code CS1061 C# Compiler Description for the Code :CS1061 ‘{0}’ does not contain a definition for ‘{1}’ and no accessible extension method ‘{1}’ accepting a first argument of type ‘{0}’ could be found (are you missing a using directive or an assembly reference?)