Showing 101 - 120 of 122 results
This blog post will explain how you can use the TrimStart function in C# to remove leading zeros from a...
If you are a Developer and have an task to change or view the Wifi Settings via some user interaction...
Few months back , I was making an R&D on the possibilities of reading and writing to/from the Excel file...
If you want to search for the next occurance of the word in the sourcecode without the displaying the find...
There are several ways in which you can read a text file in to a string variable in C#. One...
There are times when you want to mark a class or method as deprecated in your source codeย  so that...
There are times when you want to prevent overriding a method or property but still want the class be inheritable...
The extension methods in C# provides one of the easiest way to add a method to an existing type ....
Have you Observed anonymous types closely in c# as well as VB.NET? This post covers some interesting differences with the...
  • .NET
  • November 6, 2024
If you need to translate a hostname (for example : Ginktage.com) to its IP Addressย  , you can use the...
I read an article in one of the the popular site, The Register on Exam board deletes C and PHP...
If you wanted to get the path to the Microsoft .NET Frameworkโ€™s csc.exe from Visual Studio Command Prompt , you...
How do one check if there is a open network connection in the Windows Phone 7 using c#? . You...
The Namespace in C# has the following advantages It lets the developers to organise their code / classes Provides a...
The version number for a .NET Application (c#) will generally contains the following Major version Minor version Build number Revision...
Everwondered how you can use a ternary operator with-in a string interpolation in C#?. This simple tip shows you how...
If you require to compute exponential values like finding the square of the number etc , the Math.Pow method in...
In C# , One can sort the List of Objects using Lambdas easily . Until now , i found the...
Do you want toย find if the number is odd or even in C# ? , using Bitwise AND operator is...
There are times when you would have an array of string with only integer values and you may want to...