Search Results

3
votes
3answers
846 views

Traversing an arbitrary C# object graph using XPath/applying XSL transforms

I've been looking for a component that would allow me to pass an arbitrary C# object to an XSL transform. The naive way of doing this is to serialise the object graph using an XmlSerializer …
1
vote

What’s wrong with C#?

I don't think that C# 3.0 gives you much to complain about, unless you dislike static typing and/or case sensitivity, but that's just a matter of personal taste, and even in the case of static typi …
3
votes

Find a private field with Reflection?

One thing that you need to be aware of when reflecting on private members is that if your application is running in medium trust (as, for instance, when you are running on a shared hosting environm …
3
votes

Would you ever NOT catch an exception, or throw an exception that won’t be caught?

There's a very good rule that I came across a while ago: Throw an exception when a method can't do what its name says it does. The idea is that an exception indicat …