C# Type Delimiter

In this chapter you will learn:

  1. Get to know Type.Delimiter
  2. Syntax for Type.Delimiter
  3. Example - Type.Delimiter

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:

  1. Get to know Type.EmptyTypes
  2. Syntax for Type.EmptyTypes
  3. Example - Type.EmptyTypes