Array in C#
When we want to store more than one value of single datatype in a variable, we use we can say that arrays are strongly types. How to Create an Array…
Comments in C# | Different Types Of Comments in C#
Comments are that block of code that is used for program documentation and those line(s) of code is ignored by compiler while execution. There are three ways of commenting in…
Verbatim Literals in ASP.Net and C#
Have you ever come up with standard where you wanted to access a path in a program. Lets just say : d:\binoy\jpeg\website\ If I want…
Parse vs. TryParse | Difference between Parse and TryParse
Parse vs. TryParse Parse TryParse Parse is used to convert data from string to other data type. It always expects a string to be passed. Parse throws an exception if…
Difference between Implicit Conversion and Explicit Conversion | Implicit Conversion vs. Explicit Conversion
Implicit Conversion Explicit Conversion Implicit Conversion is done automatically. Explicit Conversion is done programatically. In Implicit conversion, no data loss take place during the data conversion. In explicit conversion, data…
iPhone 6: iOS 8 Waterproof Smartphone
The iPhone’s debut The iPhone 6 is rumored to make its debut September 16, 2014. The date, still debated, is being speculated by many. With the excitement brewing the iPhone…
How creating a configuration class speedup your c# web application ?
I was creating an application with n-tier design in mind. Actually this was just a conceptual n-tier, it would be more appropriate if I call it n-layered application as the…
How to create XML document programatically in c# | Error Log Creator using Csharp in XML
While working in .net for some time, i today came up with a requirement in which i had to create a error logging system for an n-tier application. I could…