예제 #1
0
파일: class1.cs 프로젝트: zhimaqiao51/docs
    public static void Main()
    {
        // Create a new instance of the class.
        QueueExample example = new QueueExample();

        // Create a nontransactional queue on the local computer.
        CreateQueue(".\\exampleQueue", false);

        example.UseQueue();

        return;
    }