I won't go into a lot of detail here, because others have already covered a lot of it, but I want to clarify some points that other answers have not really explained well or correctly. This is largely pedantic, and for 99.99999% of the cases you can just think of "C# and CIL/MSIL is managed code", but there are some subtleties to this.
First, CIL/MSIL is known as an "intermediate language", which means that it's a computer language that is used as an intermediate step between the source code and the final native machine code. However, this does not necessary have to be the case. I have heard about experimental projects where they have created a CPU that executes CIL (or the java equivalent called Java Byte Code) directly without first converting it to a native form (basically, the CIL is the native form).
Managed Code refers to code that is "managed" by a managed runtime of some sort. This typically means the code is garbage collected, and has some kind of security layer that prevents things like buffer overflows and other kinds of problems that can occur in native code. In .net this is known as the Common Language Runtime (CLR)
In the old days, this used to be known as a "virtual machine" and why the java environment is called a JVM, although that term is now largely a misnomer. Nowadays, with JIT (Just in time) compilers, there is no actual "virtual machine", but it's instead a layer of code that "wraps" the native compiled code to ensure you don't break the rules, and to clean up after your code. It also abstracts some of the platform specific things out so that the CIL doesn't have to worry about them.
So, Managed code refers to the concept of code running in a managed runtime. CIL is considered managed code when it is running in a runtime such as the .NET runtime environment.
C# and VB.NET are often considered "Managed Languages" because they are typically compiled to CIL and run under a managed runtime. However, this does not necessarily have to be the case (although if following the letter of the specification, it probably does have to be the case). For instance, there are compilers that will compile c# directly to native code without an intermediate level, and there are runtime interpreters for C# that do not compile the code at all, but rather "interpret" it at runtime.
So the gist is that Managed code and CIL are two different things, but they are related.