Dot Net Learning Zone Blog

A blog about to learn Dot Net

Archive for March, 2008

Download free books of Dot Net and Microsoft certification

Posted by Rajesh on March 27, 2008

1) www.flazx.com

You can download many books of Dot net and Microsoft Certification books.

First of all you have to create user account and the for downloading books you must login.

2) www.esnips.com

This is good site to download books. Search your books oh this site.

Please follow some steps
Copy the below link and paste in address bar in internet explorer . Sometimes, It may be this link will not work but try after some times , It will work.

1  MCTS Framwork2.pdf

http://www.driveway.com/i1×7a2i6u3

2. Addison.Wesley.Professional.Essential.Windows.Communication.Foundation.(WCF).For..NET.Framework.3.5.Feb.2008.pdf

http://www.driveway.com/h2n0w5k2j7

3 Pro ASP.NET 3.5 in C# 2008, Second Edition.pdf

http://www.driveway.com/p9d9h0c6p2

Posted in Download | 1 Comment »

Use Tryparse to convert string value to integer

Posted by Rajesh on March 26, 2008

If you work on visual studio 2005. Don’t use int.prase because it throws an ArgumentNullException exception.
public static int IntTryParse(string values, int defaultValue)
{
int val = defaultValue;
if (int.TryParse(values, out val))
return val;
else
return defaultValue;

}

Posted in c# | Leave a Comment »