Showing 21 - 40 of 122 results
This post will explain the different ways to assign the null values to the Nullable Datetime and explain how to...
In one of my previous blog post , I wrote about How to retrieve the Screen Resolution of Windows Phone...
There are 2 options for the developers to declare a constant value in their C# application.1. readonly2. const If you...
c#This blog post will explain what is the default keyword in C# and the usecase of the default keyword in...
Recently , i was in discussion with My manager as well the client in moving an application from Delphi to...
If you need to get the list of all drives installed on your system using C# , you can use...
If you have got an array of integers and you want to multiple the values inside the array and display...
The GeoCoordinateWatcher class lets you to get the Geo Coordinates in Windows Phone . It is part of the Location...
Want to convert array of strings to List of strings in C# ? . Below is a sample code to...
Hereโ€™s a simple tip that lets you retrieve the Screen Resolution of Windows Phone 8 using C# . You can...
You might encounter an scenario where you have to find out if the integer value that is passed needs to...
The orderby keyword can be used in LINQ to retrieve the ordered list of records based on the specified field....
If you are using a WebBrowser Control in your Windows Phone and want to retreive the page title of the...
This blog post will explain 3 different use cases of the @ Symbol in C# and how the .NET developers...
In my previous blog post , i explained How to retreive the Battery Level programatically in Windows Phone 8 ?...
Sometimes when developing an web application , the developers might want to serialize Enum to its string instead of the...
Skype is a software that allows users to make voice , video calls or sent text messages over internet. I...
Retrieving Data from the database and displaying the result is one the basic operation that most of the application would...
When using the SQL Query, we could use the IN keyword to find the item something like this SELECT *...
Want to know what is the use of Tilde (~) symbol in C# especially when using enum definition?. Letโ€™s have...