c# Programming Glossary: jeff's
Public Fields versus Automatic Properties http://stackoverflow.com/questions/1180860/public-fields-versus-automatic-properties I had some time ago there was a link to a posting on Jeff's blog explaining some differences. Properties vs. Public Variables..
Displaying the build date http://stackoverflow.com/questions/1600962/displaying-the-build-date some C# code by Joe Spivey for that from the comments to Jeff's article private DateTime RetrieveLinkerTimestamp string filePath..
Discriminated union in C# http://stackoverflow.com/questions/3151702/discriminated-union-in-c-sharp had the original title C ish style union in C# but as Jeff's comment informed me apparently this structure is called a 'discriminated..
How do I generate a Friendly URL in C#? http://stackoverflow.com/questions/37809/how-do-i-generate-a-friendly-url-in-c There are several things that could be improved in Jeff's solution though. if String.IsNullOrEmpty title return IMHO not..
Why doesn't C# have support for first pass exception filtering? http://stackoverflow.com/questions/602066/why-doesnt-c-sharp-have-support-for-first-pass-exception-filtering pass exception filtering Note this is not a duplicate of Jeff's question . That question asked Is an equivalent I know there..
XML indenting when injecting an XML string into an XmlWriter http://stackoverflow.com/questions/858630/xml-indenting-when-injecting-an-xml-string-into-an-xmlwriter 1 XmlWriter xw XmlWriter.Create xtw Changed per Jeff's MSDN link XmlWriterSettings set new XmlWriterSettings set.Indent..
How do I calculate someone's age in C#? http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c datetime share improve this question For some reason Jeff's code didn't seem simple enough. To me this seems simpler and..
Unhandled Exception Handler in .NET 1.1 http://stackoverflow.com/questions/944/unhandled-exception-handler-in-net-1-1 uncaught exceptions and display a friendly dialog box Edit Jeff's response was marked as the correct answer because the link he..
|