Obfuscation is a technique used to complicate code. Obfuscation makes code harder to understand when it is decompiled, but it typically has no affect on the functionality of the code.
Types of Obfuscation
Name Obfuscation: Name obfuscation changes the name of your classes and methods to unreadable characters, making your code harder to understand
String Encryption: Managed software stores all the strings in one place and in a clear structure. This makes it easy to find the strings in a decompiled assembly. By following the references to these strings, it may be possible to understand the purpose of your code, even after obfuscation. String encryption works by moving all user strings to an encrypted block of storage. When needed, the runtime executive decrypts the string in memory.
Control Flow Obfuscation: Control flow obfuscation is about modifying the program so that it yields the same result when run, but is impossible to decompile into a well-structured source code and is more difficult to understand.
Code Encryption: Code encryption protects the MSIL instructions by encrypting them and stripping the original instructions from the assembly, encrypted instructions are kept in a secure storage. When the assembly is loaded a native runtime executive assumes control of portions of the .NET runtime and manages decrypting the MSIL as needed.
Code Virtualization: Code virtualization converts your MSIL code into Virtual Opcodes that will only be understood by a secure Virtual machine.
Reference: http://en.wikipedia.org/wiki/List_of_obfuscators_for_.NET