Stories recently tagged with 'notagain'

Filtering List Items - The Yield Return Solution (dev102.com)

submitted by razamitrazamit(4566) 3 years, 4 months ago

Here we are talking about filtering list items again :). read more...

add a comment |category: |Views: 331

tags: another

C#:- Usage of As Keyword in C# (smallworkarounds.blogspot.com)

submitted by ash143guptaash143gupta(750) 3 years, 6 months ago

This article show a little hidden keyword in C# called "As" its usage when it is benificial to use it and when its not. read more...

1 comment |category: |Views: 529

tags: another

How to build your own Digg Client in SIlverlight 2(weblogs.asp.net)

submitted by donjuanito909donjuanito909(45) 3 years, 6 months ago

Silverlight 2 is a impressive RIA creator. Learn how to make a application using the API from a popular social bookmarking site. read more...

add a comment |category: |Views: 20

tags: another

LINQ To SQL is Dead - Read Between the Lines (codebetter.com)

submitted by colinjackcolinjack(1010) 3 years, 6 months ago

David Hayden with some great points on the Linq to SQL announcement and some ideas on how the project could be saved. read more...

4 comments |category: |Views: 817

tags: another

Microsoft kills Linq to SQL(ayende.com)

submitted by JonSagaraJonSagara(310) 3 years, 6 months ago

Ayende (aka Oren) expresses disbelief at Microsoft's decision to effectively kill off LINQ to SQL. read more...

5 comments |category: |Views: 1388

tags: another

LINQ To SQL Gets Kicked to the Curb... Needs A Good Home!(codebetter.com)

submitted by colinjackcolinjack(1010) 3 years, 6 months ago

Great post on why L2S needs to be supported by the community and why a L2S targeted at the community is a good idea. read more...

5 comments |category: |Views: 490

tags: another

For vs Foreach Performance (in .NET)(madprops.org)

submitted by andrewtobinandrewtobin(15) 3 years, 6 months ago

Timing the difference between a "for" loop and a more "modern" version using "foreach" and Enumerable.Range. read more...

add a comment |category: |Views: 425

tags: another

Enumerations and Strings - Stop the Madness!(monstersgotmy.net)

submitted by birdchestbirdchest(595) 3 years, 9 months ago

a great little utility class that can parse strings to enumerations generically. read more...

add a comment |category: |Views: 32

tags: another

Out, Out, Damn Ref(atalasoft.com)

submitted by ericdcoolestericdcoolest(1200) 4 years, 1 month ago

The difference between the out and ref keywords in C# .. and other questions this brings up. read more...

1 comment |category: |Views: 12

tags: another

A different approach for raising events(des-eisbaeren-blog.de)

submitted by GoloGolo(380) 4 years, 1 month ago

This article describes different approaches how to raise events in C#. read more...

1 comment |category: |Views: 3

tags: another

Stored Procedures vs. Ad-Hoc (yet again yawn)(statestreetgang.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 4 years, 1 month ago

Inspired by Chris Love's Things I Hate About NET post http://www.dotnetkicks.com/aspnet/Things_I_Hate_About_NET I respond to his love of (yech) Stored Procedures. read more...

add a comment |category: |Views: 15

tags: another

A New Pattern for Event Declaration(dev102.com)

submitted by razamitrazamit(4566) 4 years, 2 months ago

A better and safer way to declare events in c# read more...

13 comments |category: |Views: 9

tags: another

.NET Event Techniques(devlicio.us)

submitted by BigTunaBigTuna(219) 4 years, 2 months ago

A very simple technique to avoid the need for a null check prior to raising an event read more...

1 comment |category: |Views: 21

tags: another

Correct event invocation(dotnettipoftheday.org)

submitted by pechapecha(105) 4 years, 2 months ago

Be aware that if there are no subscribers a .NET event will be null. Therefore when raising the event from C# test it for null first. read more...

add a comment |category: |Views: 6

tags: another

Chaining the C# ?? Operator(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 4 months ago

The C# 2.0 ?? operator makes it easy to assign a default value to nulls. Nothing new here, but did you know that you can also chain the operator to quickly check many value and find the first non-null value? read more...

1 comment |category: |Views: 3

tags: another

?? Operator and it’s use case(jachman.wordpress.com)

submitted by JachmanJachman(530) 4 years, 6 months ago

Long time I asked myself, for what the heck I could use the ?? operator. Last days I found the perfect scenario for using this operator. read more...

2 comments |category: |Views: 4

tags: another