Top Stories published by theburningmonk.com in April of 2010

.Net Tips — marking the default enum value ‘Undefined’

enum is a tremendously useful structure in C#, but when defining a new enum there is one thing you should always ask yourself:

What should the default value be for my enum?

.Net Tips — converting between Enum and string

If you’re reading this then you should already know what an enum is in C# and that the underlying type of an enum element is int and you can convert between int and enum using casting:


Buzzword Buster — AMFVO

AMFVO is short for Action Message Format (AMF) Value Object (VO).

AMF is a binary format used to serialize ActionScript objects, primarily used to exchange data between a Flash application and a remote service; a VO is also known as a Data Transfer Object…