C# Type Delimiter
In this chapter you will learn:
Description
Type Delimiter
separates names in the namespace of the
Type. This field is read-only.
Syntax
Type.Delimiter
has the following syntax.
public static readonly char Delimiter
Example
using System;/*w w w. j a va2 s.c o m*/
using System.Reflection;
class MyAssemblyClass
{
public static void Main()
{
Type objType = typeof(System.Array);
Console.WriteLine (objType.Delimiter);
}
}
Next chapter...
What you will learn in the next chapter:
C# Type Delimiter
C# Type EmptyTypesC# Type FilterAttribute
C# Type FilterName
C# Type FilterNameIgnoreCase
C# Type Missing
C# Type Assembly
C# Type AssemblyQualifiedName
C# Type Attributes
C# Type BaseType
C# Type ContainsGenericParameters
C# Type CustomAttributes
C# Type DeclaringMethod
C# Type DeclaringType
C# Type DefaultBinder
C# Type FullName
C# Type GenericParameterAttributes
C# Type GenericParameterPosition
C# Type GenericTypeArguments
C# Type GUID
C# Type HasElementType
C# Type IsAbstract
C# Type IsAnsiClass
C# Type IsArray
C# Type IsAutoClass
C# Type IsAutoLayout
C# Type IsByRef
C# Type IsClass
C# Type IsCOMObject
C# Type IsConstructedGenericType
C# Type IsContextful
C# Type IsEnum
C# Type IsExplicitLayout
C# Type IsGenericParameter
C# Type IsGenericType
C# Type IsGenericTypeDefinition
C# Type IsImport
C# Type IsInterface
C# Type IsLayoutSequential
...