Esempio n. 1
0
    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;
    }