Loading...
DotNetKicks.com
.NET links, community driven
login
register
submit a story
upcoming stories
about
blog
Why not
join our community?
, there are
20 users online
home
users
fquednau
comments
DotNetKick.com is an
open-source project
. Please
report any bugs
and let us know
your great suggestions
.
Currently running svn revision
620
(rss)
Kick Spy!
,
Kick Zeitgeist
and
Kick Widgets
fquednau
fquednau
Profile
Kicked
Submitted
Comments
Tags
Friends
Kicked By Friends
Submitted By Friends
Comments:
A first look at Duck Typing in C# 4.0
Huh? Digg effect in .NETkicks?! Mirror anyone?
posted by
fquednau
1 month ago
Three C# 2.0/3.0 Syntaxes That You Didn't Know But Were Afraid to Ask
You forgot that you can skip the brackets if your block consists of a single line.
OMG!
posted by
fquednau
1 month, 29 days ago
EventArgs.Empty - Do You Use It?
You've got to the kidding...
In another post, someone writes on the merits of being able to compare against null.
posted by
fquednau
2 months, 12 days ago
What a C# Coder Should Know Before They Write VB
That I call detailed!
posted by
fquednau
4 months, 11 days ago
Vb.Net one better than C#
Although I find that usage awkward. Such an extension method always made more sense to me to be attached to the string, not the enum, replacing it by ref...
"Value".ToEnum<SomeEnum>();
posted by
fquednau
4 months, 15 days ago
C#: Enhance Enums using Extension Methods
Oh, we still do smilies in code? *sigh*
posted by
fquednau
4 months, 18 days ago
C#: Enhance Enums using Extension Methods
I think I'd prefer this, it's far more reusable:
public static A GetAttribute<A>(this Enum @enum)
where A : Attribute
{
if (!@enum.GetType().IsEnum)
return null;
object[] attributes = @enum.GetType().GetField(@enum.ToString()).GetCustomAttributes(typeof(A), false);
return attributes.Length > 0 ? (A)attributes[0] : null;
}
posted by
fquednau
4 months, 18 days ago
BREAKING NEWS! Castle Project Lead Hamilton Verissimo Joins Microsoft
Breaking news? You mean more like breaking waves...the principal wave already arrived two frontpage posts down. ts...
posted by
fquednau
4 months, 18 days ago
A Safe & Asynchronous One to Many Stream Copy Through IL & Inheritance
That's too complicated to be on .Netkicks front page =)
posted by
fquednau
5 months, 7 days ago
Another Use for C# Using
Note to self: compiler-directive + using alias = use either MSTest or NUnit. Nice!
posted by
fquednau
5 months, 18 days ago
Feedback on Danny Simmons' Why use Entity Framework
Valid post! And more on that here:
http://www.lostechies.com/blogs/jimmy_bogard/archive/2008/05/19/more-entity-framework-thoughts.aspx
posted by
fquednau
6 months, 15 days ago
The Monostate Pattern
Ah, so I 'm actually doing monostate?
Seriously, I always thought Singleton is keeping an single instance of some object. As long as you implement all relevant ops as instance members of said object and give some entry point into your singleton keeper you're still well on your way for testability and all OO glory.
posted by
fquednau
7 months, 5 days ago
Video: Intro to Spec# - Future of development
Has been around for quite a while now. I quite like it, but it should be an opt in thing:
http://research.microsoft.com/specsharp/?0sr=a
- Spec# home
http://research.microsoft.com/specsharp/papers/krml136.pdf
- Intro to Spec# features
posted by
fquednau
7 months, 5 days ago
The Developer Exchange Program
Lovely...in theory developerexchange.com is still free. Go grab it! A new source of revenue for high-class dev teams?
posted by
fquednau
7 months, 12 days ago
Tag property without inheritance
So you recreated attached properties? Fascinating...
posted by
fquednau
7 months, 12 days ago
Building Domain Specific Languages on the CLR
He is some sort of modern hero, I'd think...
posted by
fquednau
7 months, 13 days ago
« Previous
1
2
Next »
Sponsored Link:
www.carlist.ie
Search:
Ads via The Lounge
DotNetKicks is an open source project from
Incremental Systems