WebMonster

Stories kicked by WebMonster

Have you noticed this function in C# 2.0(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 5 years, 6 months ago

This is really weird, I've been using C# 2.0 since beta 2, and I didn't notice this function in List class Consider the following code. read more...

2 comments |category: |Views: 1

tags: another

Windows Live Barcode Launches (via Greg Blog)(coolthingoftheday.blogspot.com)

submitted by marcosmarcos(2779) 5 years, 6 months ago

What is Windows Live Barcode Windows Live Barcode is a set of services that transfer information between various media (PCs, billboards, magazines etc.) and handsets via Quick Response Code (QR Code), a two-dimensional barcode. It provides a new method for people to exchange information and enjoy various online services on handsets. Windows Live Barcode aims to enhance handset utility and provide you with more convenience and flexibility. read more...

add a comment |category: |Views: 3

tags: another

TDD Design Starter Kit (codebetter.com)

submitted by jhol3990jhol3990(495) 5 years, 8 months ago

A Set of articles on where to do and what to consider when beginning est drivern development. Stay Agile. read more...

add a comment |category: |Views: 15

tags: another

Computer Geek Humor for the Week of September 3rd(community-credit.com)

submitted by BulletBullet(785) 5 years, 8 months ago

Here are the latest Computer Geek Humor entries for the week of September 34d, 2006. The Community-Credit humor discussion board may not have the largest collection of Geek humor in the world, but we do have the largest collection of Funny Geek Humor in the world. read more...

1 comment |category: |Views: 14

tags: another

Performance optimization of an if/else-statement(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 8 months ago

Have you ever considered how well a regular if/else-statement performs? I haven’t, but wanted to test it. read more...

add a comment |category: |Views: 16

tags: another

Dustin Campbell: Giving Enums a Little Love(diditwith.net)

submitted by jfollasjfollas(425) 5 years, 8 months ago

Dustin Campbell (Developer Express' Senior "Whipping Boy") discusses improvements that should be made in order to round out the Enumeration data type in .NET (to provide for both increased functionality and improved readability of code that uses enums). read more...

add a comment |category: |Views: 2

tags: another

Scott Hanselman's 2006 Ultimate Developer and Power Users Tool List for Windows(hanselman.com)

submitted by HaackedHaacked(5105) 5 years, 8 months ago

Scott Hanselman, that uber technologist, updates his must have list of power tools for developers. read more...

add a comment |category: |Views: 6

tags: another

Overload operators the right way in C#(madskristensen.dk)

submitted by dalzieldalziel(6230) 5 years, 8 months ago

It’s a good rule of thumb to overload the equality operators on classes. That ensures a correct comparison between to class instances of the same type. If you don’t, .NET automatically uses reflection and that is way slower than a custom implementation. We all use the equality operators (“==”, “!=”) all the time and we expect them to be right every time. They are not!, but even if they were there is a good chance that you want to change them anyway. read more...

add a comment |category: |Views: 1

tags: another

Cool (and Free) Threading .NET 2.0 E-Book (coolthingoftheday.blogspot.com)

submitted by marcosmarcos(2779) 5 years, 9 months ago

"This is a very cool threading online reference and freely downloadable e-book (PDF). Using C# for its examples, in 76 pages it covers basic synchronization, locking, BackgroundWorker, async delegates and more." Via: http://coolthingoftheday.blogspot.com read more...

1 comment |category: |Views: 58

tags: another

Use Generics to improve performance(csharpfeeds.com)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

Generics were of one of main new features in .NET 2.0 languages. In .NET 1.x developers had to use System.Collections non-Generic collections to save their objects but no type checking were occurred for them. Therefore they had to do a type casting when they were retrieving their objects from collections. Now that Microsoft introduced Generics as a type specific alternative for those old means, life is pretty easier for each developer. One of most important reasons to use Generics instead of non-Generic collections is performance. read more...

add a comment |category: |Views: 18

tags: another