Tuesday, May 12, 2009
Urchha also know as Orchha
Urchha also know as Orchha lies on the bank of river Betwa. Urchha is 15 km. from Jhansi in Uttar Pradesh . The town is know for its historic impotance.
Friday, February 20, 2009
Resource File
What is Resource File?
* A resource file is a XML file that contains the strings that we want to
a. Translate into different languages.
b. Can be updated dynamically so that user themselves can modify values in resource files once the application is deployed on the server without re-compiling the entire application itself.
* The resource file contains key / value pairs.
* Each pair is an individual resource.
* Key names are not case sensitive.
* A resource file is a XML file that contains the strings that we want to
a. Translate into different languages.
b. Can be updated dynamically so that user themselves can modify values in resource files once the application is deployed on the server without re-compiling the entire application itself.
* The resource file contains key / value pairs.
* Each pair is an individual resource.
* Key names are not case sensitive.
Tuesday, July 22, 2008
An Efficient Method of String Concatenation in C#
An Efficient Method of String Concatenation
A good way to concatenate strings in a loop or when performing multiple concatenations, is to use the StringBuilder class:
String s = "a"
s+="b"; //this is slow
StringBuilder sb = new StringBuilder();
sb.Append("a");
sb.Append("b");
A good way to concatenate strings in a loop or when performing multiple concatenations, is to use the StringBuilder class:
String s = "a"
s+="b"; //this is slow
StringBuilder sb = new StringBuilder();
sb.Append("a");
sb.Append("b");
Thursday, August 16, 2007
ASP.NET 2.0 and 1.1 diffrences
One of major intoduction of pardifrences is the intoduction of partial classes. Class defination is split into two or more partial clasees, all parts are combined when the application is compiled.
This situation is quite uesful when we are having large team.
However there are certain restrictions to this.
This situation is quite uesful when we are having large team.
However there are certain restrictions to this.
Sunday, May 13, 2007
C# Delegates Overview:
C# Delegates Overview:
Delegates have the following properties:
Delegates have the following properties:
- Delegates are similar to C++ function pointers, but are type safe.
- Delegates allow methods to be passed as parameters.
- Delegates can be used to define callback methods.
- Delegates can be chained together; for example, multiple methods can be called on a single event.
Wednesday, January 3, 2007
Subscribe to:
Posts (Atom)