Difference between Panel and PlaceHolder Control | Panel Control vs. PlaceHolder Control in ASP.Net
Panel Control vs. PlaceHolder Control Panel Control PlaceHolder Control Panel Control does have its visual layout and used as the container for other controls. PlaceHolder control does not have…
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 Calloc and Malloc | Calloc() vs. Malloc()
Calloc() Malloc() Calloc initializes the allocated memory to Null or Zero. Malloc initializes the allocated memory area with garbage value. Block of memory is allocated by Calloc(). Byte of memory…
APPLE’S NEW PROGRAMMING LANGUAGE: SWIFT
Apple has added a new name to the list of programming languages. Its called the ‘SWIFT’ programming language. Swift, Apple’s new programming language took about 4 years to get developed.…
Difference between Runtime Polymorphism and Compile time Polymorphism
Polymorphism means “Poly mean Multiple” + “Morph means Forms” . It is one feature of Object Oriented Paradigm having ability of taking more than one form. Generally in Polymorphism we…
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…
Difference between Structure and Union | Structure VS. Union
Structure VS. Union Structure Union Memory Allocation Members of structure do not share memory. So A structure need separate memory space for all its members all the…