Category: C#

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.

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…

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…

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…