3 out of 7 rated this helpful - Rate this topic

Microsoft.CSharp Namespace

The Microsoft.CSharp namespace contains classes that support compilation and code generation using the C# language.

  Class Description
Public class CSharpCodeProvider Provides access to instances of the C# code generator and code compiler.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Namespaces
Namespaces are the logical component that consist of many classes.
c sharp namespace
namespaces are the way c# segregates the .NET library classes into reasonable groupings. c# supports the feature known as using directive  that can be used to import the namespace system into the program. once a namespace is imported ,we can use the elements of that namespace without using the namespace as prefix.