Whenever i have any problem related to programming or anything related to Computer, Google search result will always contain one site i.e. Experts-Exchange.com. But since it was paid i never able to use that. And also i was very much happy with other Free site for the solution rather than relying on paid site. I [...]
Archive for December, 2008
Free Expert Exchange Account
Posted in .Net on December 23, 2008 | 2 Comments »
Blog Stats…Increasing….
Posted in .Net on December 23, 2008 | Leave a Comment »
After i regularly started posting on my blogs, slowly my visit statistics is increasing and even i earned up to 3 dollars through ads by Google Adsense. So now my only target is to make my earning 100 dollars, so for that i need to post it regularly……hopefully i will post it regularly….ofcourse if time [...]
Querying Datatable Using LINQ
Posted in .Net on December 20, 2008 | Leave a Comment »
With my current project which is recently migrated to .NET 3.5, has a requirement in which i had to query the Datatable. So this is perfect time to show the power of LINQ. But i was not able to get the appropriate method for using LINQ to Datatable. But after the help of MSDN i [...]
Type Casting in C#
Posted in .Net on December 18, 2008 | Leave a Comment »
Explicit and Implicit Type casting is the common programming style for almost any type of the language. Those who are using managed environments i.e. Java and .NET rely optimizing task on compiler and during Run time.
C# provides two ways of type casting object references.
e.g.
object A = new Fruit();
((Fruit)A).Eat(); // Type 1
(A as Fruit).Eat(); //Type 2
In [...]
Blogging through Ping.fm
Posted in .Net on December 15, 2008 | Leave a Comment »
Ping.fm is a simple service which allows you to update all your social networks in one go. Using this site you can post the blog, update the blog and many other Social networks update you can do in one go. This is my post through Ping.fm. Really good alternative when blogger and wordpress is blocked [...]