C#.Net [Tips & FAQ]
Tuesday, December 14, 2010
Mathematical Functions in .NET
›
Math.Abs() Returns the absolute value. Math.Abs(-10) returns 10. Math.Ceiling() Returns an integer that is greater than or equal to a number...
String Functions in .NET
›
Several built-in string functions used to perform string manipulations Function in ASP.NET Asc() Returns the character code of the first cha...
Tips for Stored Procedures Optimization
›
Use stored procedures instead of heavy-duty queries. This can reduce network traffic, because your client will send to server only stored pr...
Tuesday, November 23, 2010
Create/Remove Controls In/From a Containers like GroupBox Dynamically
›
My Task is " I developed an application by retrieving a list of Tables from the database into combobox. I choosed a table & Clicked...
Wednesday, September 8, 2010
DELEGATES AND EVENTS
›
Delegates Delegates are a construct for abstracting and creating objects that reference methods and can be used to call those methods. Deleg...
Difference Between ToString() vs Convert.ToString() vs (string) cast
›
There is a simple but important difference between these three… ToString() raise exception when the object is null So in the case of object...
›
The StringBuilder and String classes provide ways to perform string manipulation. If your program requires many manipulations, then the Stri...
›
Home
View web version