rheaney

Stories submitted by rheaney

C# Brain Teaser #3(blogs.msdn.com)

submitted by rheaneyrheaney(160) 4 years ago

What will the following code output? When you think you know, copy the code into Foo.cs and run “csc Foo.cs” and then run “Foo.exe”. Did it output what you expected? The brain teaser is to come up with the correct explanation for why the program outputs what it does. read more...

add a comment |category: |Views: 67

tags: another

The Kinky and Pornographic TextReader(ryanheaney.info)

submitted by rheaneyrheaney(160) 4 years, 1 month ago

So I have this bad habit of forgetting that TextReader is abstract. I often say to myself, “Darn, I have this string. And the API I want to use takes a stream. Can’t I just create a TextReader to do it?” read more...

add a comment |category: |Views: 0

tags: another

Customizing Visual Studio 2008 and other IDEs (Colors, Fonts, Snippet(ryanheaney.info)

submitted by rheaneyrheaney(160) 4 years, 1 month ago

So many bloggers have taken the time to write about what makes their Visual Studio experience work for them-and I guess I’m not going to be any exception. I’m mainly putting this all here so that it’s easy for me to find in the future really-but I guess anyone can benefit from it. So without further adieu… read more...

1 comment |category: |Views: 4

tags: another

Finding a C# library to decode MP3's(ryanheaney.info)

submitted by rheaneyrheaney(160) 4 years, 1 month ago

Mp3Sharp bills itself as being able to "decode MP3 Files natively in .NET using a Managed application written in C#." Perfect! And it does just that. It's pretty darn easy. read more...

add a comment |category: |Views: 11

tags: another

On Using an Application Framework(ryanheaney.info)

submitted by rheaneyrheaney(160) 4 years, 1 month ago

One of the things that .NET provides us is a great framework with immense amounts of code tucked away in nice little method calls that we can use. The problem is that one of every two .NET developers I meet has no idea what the .NET Framework actually offers them. What’s worse with some of these developers is that if you were to take away the framework they were using, they would be caught dead in the water. Frameworks are great, but you need to know what they’re actually doing to master them. read more...

add a comment |category: |Views: 1

tags: another

On ASP.NET’s New MVC Extensions(ryanheaney.info)

submitted by rheaneyrheaney(160) 4 years, 1 month ago

Constraining routes to be lowercase only read more...

add a comment |category: |Views: 2

tags: another