Category: C#
C# Compiler Warning – CS8656 call to non-readonly member ‘{0}’ from a
In this blog post, you’ll learn more about the C# Compiler Warning – CS8656 and the related message description C# Compiler Warning Code CS8656 C# Compiler Description for the Code :CS8656 Call to non-readonly member ‘{0}’ from a ‘readonly’ member results in an implicit copy of ‘{1}’.
C# Compiler Error – CS1564 conflicting options specified: win32 res
In this blog post, you’ll learn more about the C# Compiler Error – CS1564 and the related message description C# Compiler Error Code CS1564 C# Compiler Description for the Code :CS1564 Conflicting options specified: Win32 resource file; Win32 manifest
C# Compiler Error – CS8410 ‘{0}’: type used in an asynchronous usin
In this blog post, you’ll learn more about the C# Compiler Error – CS8410 and the related message description C# Compiler Error Code CS8410 C# Compiler Description for the Code :CS8410 ‘{0}’: type used in an asynchronous using statement must be implicitly convertible to ‘System.IAsyncDisposable’ or implement a suitable ‘DisposeAsync’ method.
C# Compiler Error – CS1747 cannot embed interop types from assembly
In this blog post, you’ll learn more about the C# Compiler Error – CS1747 and the related message description C# Compiler Error Code CS1747 C# Compiler Description for the Code :CS1747 Cannot embed interop types from assembly ‘{0}’ because it is missing the ‘{1}’ attribute.
Json.NET & C# – How to Deserialize an Object ?
One of the ways to Deserialize an object to JSON string in C# in the Json.NET is using the DeSerializeObject method defined in the JsonConvert method. How to Deserialize an Object in C# using Json.NET ? Below is a sample code snippet demonstrating how you can deserialize an object from Json string to C# object using Json.NET. It takes the json string that contains the…
C# Compiler Error – CS1666 you cannot use fixed size buffers contai
In this blog post, you’ll learn more about the C# Compiler Error – CS1666 and the related message description C# Compiler Error Code CS1666 C# Compiler Description for the Code :CS1666 You cannot use fixed size buffers contained in unfixed expressions. Try using the fixed statement.
C# Compiler Error – CS0550 ‘{0}’ adds an accessor not found in inte
In this blog post, you’ll learn more about the C# Compiler Error – CS0550 and the related message description C# Compiler Error Code CS0550 C# Compiler Description for the Code :CS0550 ‘{0}’ adds an accessor not found in interface member ‘{1}’
C# Compiler Error – CS0507 ‘{0}’: cannot change access modifiers wh
In this blog post, you’ll learn more about the C# Compiler Error – CS0507 and the related message description C# Compiler Error Code CS0507 C# Compiler Description for the Code :CS0507 ‘{0}’: cannot change access modifiers when overriding ‘{1}’ inherited member ‘{2}’
C# Compiler Error – CS8636 invalid option ‘{0}’ for /nullable; must
In this blog post, you’ll learn more about the C# Compiler Error – CS8636 and the related message description C# Compiler Error Code CS8636 C# Compiler Description for the Code :CS8636 Invalid option ‘{0}’ for /nullable; must be ‘disable’, ‘enable’, ‘warnings’ or ‘annotations’
C# Compiler Warning – CS8776 member ‘{0}’ cannot be used in this attr
In this blog post, you’ll learn more about the C# Compiler Warning – CS8776 and the related message description C# Compiler Warning Code CS8776 C# Compiler Description for the Code :CS8776 Member ‘{0}’ cannot be used in this attribute.
C# Compiler Error – CS8349 expression cannot be used in this contex
In this blog post, you’ll learn more about the C# Compiler Error – CS8349 and the related message description C# Compiler Error Code CS8349 C# Compiler Description for the Code :CS8349 Expression cannot be used in this context because it may indirectly expose variables outside of their declaration scope
C# Compiler Error – CS1035 end-of-file found, ‘*/’ expected
In this blog post, you’ll learn more about the C# Compiler Error – CS1035 and the related message description C# Compiler Error Code CS1035 C# Compiler Description for the Code :CS1035 End-of-file found, ‘*/’ expected
C# Compiler Error – CS0670 field cannot have void type
In this blog post, you’ll learn more about the C# Compiler Error – CS0670 and the related message description C# Compiler Error Code CS0670 C# Compiler Description for the Code :CS0670 Field cannot have void type
C# Compiler Error – CS8915 a global using directive must precede al
In this blog post, you’ll learn more about the C# Compiler Error – CS8915 and the related message description C# Compiler Error Code CS8915 C# Compiler Description for the Code :CS8915 A global using directive must precede all non-global using directives.
How to use SQL like Operator in LINQ and C#?
In a SQL Query, one might use the Like Query which can be used along with the % operator to search of contains within the data. How to use SQL like Operator in LINQ and C#? This article will show it with a sample code snippet. How to use SQL like Operator in LINQ and C#? Below is a sample source code demonstrating the usage…
What threads does the Windows Phone Apps use?
The Windows Phone XAML App generally uses 2 threads UI thread Composition thread UI thread is actually the main thread in the Windows Phone App and one of the main functionality of this thread is the handling of the user input, creating the XAML objects etc. The composition thread was a new addition starting from Windows Phone 7.5 which takes care of the animations, graphics…
C# Compiler Error – CS0726 ‘{0}’ is not a valid format specifier
In this blog post, you’ll learn more about the C# Compiler Error – CS0726 and the related message description C# Compiler Error Code CS0726 C# Compiler Description for the Code :CS0726 ‘{0}’ is not a valid format specifier
C# Compiler Error – CS0308 the non-generic {1} ‘{0}’ cannot be used
In this blog post, you’ll learn more about the C# Compiler Error – CS0308 and the related message description C# Compiler Error Code CS0308 C# Compiler Description for the Code :CS0308 The non-generic {1} ‘{0}’ cannot be used with type arguments
C# Compiler Warning – CS1658 {0}. see also error cs{1}.
In this blog post, you’ll learn more about the C# Compiler Warning – CS1658 and the related message description C# Compiler Warning Code CS1658 C# Compiler Description for the Code :CS1658 {0}. See also error CS{1}.
Downloading and Installing Windows Phone 8 SDK
The Windows Phone 8 SDK can be downloaded from Windows Phone Dev Centre (Microsoft Download Centre). The following tools are installed when the Windows Phone 8 SDK is installed. Visual Studio Express 2012 Microsoft Expression Blend for Windows Phone. Windows Phone Emulator Along with this, the other necessary tools like App Deployment, Windows Phone Device registration etc. are also installed. If the Visual Studio 2012…