withoutbugs.com
Showing posts with label
C#
.
Show all posts
Showing posts with label
C#
.
Show all posts
Saturday
›
A data access layer usually consumes 30% of the development time. A reasonable ORM can save you 90% of that 30% time. One such big hit is NH...
Tuesday
Persistent Dictionary
›
Key Features: A data structure implementation similar to Dictionary in .NET. - Writes objects to file system to preserve the memory - Hol...
Sunday
Covariance and Contravariance
›
Covariance is when an object that is instantiated with a more derived type is assigned to an object that is instantiated with a less derived...
Wednesday
How to get checked values out of a CheckBoxList?
›
Have you ever thought of why exactly do you love custom extensions? Roll out one just for this case: public static class ControlExtensions...
Should I ever use Entity Framework 4.0?
›
I did a small in-house presentation for the young architects in our company and though of sharing my findings. We compared different ORMs, a...
Thursday
Delegates vs Methods
›
You might get into arguments with your peers upon using delegates over method calls. Delegates have an entirely different purpose in their...
Monday
How to write simple WCF Service
›
Had some time, so thought of writing something for the "community", checkout How to write simple WCF Service article published on...
Saturday
How to: create Custom ByteArray class
›
A friend sent this to me, as an Urgent question, Write a class called ByteArray that implement allocating, reading and writing to an array...
Tuesday
Simplest console based client/server program
›
For those who want a quick and easy way to grasp the client/server model. class Program { static void Main(string[] args) { ...
Wednesday
WebBrowser Control: Callbacks not working!
›
Problem statement: Callbacks not working in WebBrowser control. Possible resolution: Check to see if your code is COM Callable ? Becaus...
Tuesday
WebBrowser control in a Console app
›
A few notes for those trying to question, how to run WebBrowser in a Console application? WebBrowser control is primarily intended for Form...
Thursday
C# 4.0: dynamic 'contextual keyword'
›
There is a new type, a contextual keyword , called dynamic in C# v4.0; getting to much of a popularity among advanced programming.It is use...
›
Home
View web version