Category: C#

List of Tags used for XML Documentation Comments in C#

Following are the list of Tags that can be used for XML Documentation of your C# Sourcecode. 1. <c> – This is used to specify the description given within the <c> tag to be marked as code . 2. <code> – Indicate multiple lines of the description to be marked as code. 3. <example>  – specifies an example for the code 4. <exception> – specifies…

WP8 Error – Cannot clear the icon while in a list Parameter name: value

When using the ApplicationBar in the Windows Phone Application and dynamically setting the IconButtons from code behind , I encounter this error . Cannot clear the icon while in a list Parameter name: value The cause of the error and the fix is pretty straight forward . I was setting the IconUri of the ApplicationBarIcon button programmatically and the value of the IconUri was not…

How to Convert a List to ObservableCollection in C#?

This simple blog post will explain how to convert a List of Object to ObservableCollection of Object in C# and Windows Phone 8. There are times when you want to convert a List of Object to ObservableCollection specially when binding an ObservableCollection to the LongListSelector etc. The reasons for this can be several. How to Convert a List to ObservableCollection in C#? To Convert a…

iOS frameworks for developing 2D Games

Are you an iOS developer and searching for the frameworks for developing 2D games for iPhone? In this article, we list out some of the iOS frameworks that can be used for developing 2d games. IOS frameworks for developing 2D Games Cocos2d Sparrow Unity3D cocos2d-iphone If you are working on any of the frameworks and wish to include them, then add them in the comments…