C#控制台程序永远等待事件

前端之家收集整理的这篇文章主要介绍了C#控制台程序永远等待事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的C#控制台应用程序附加到事件.我需要程序继续运行,以便它可以响应事件.什么是保持运行的正确方法

这是我的申请:

using System;
using NAudio.CoreAudioApi;

namespace MaxVolume
{
    class Program
    {
        private const float DesiredLevel = -15;
        private static MMDevice _device;

        static void Main(string[] args)
        {
            MMDeviceEnumerator mmde = new MMDeviceEnumerator();
            _device = mmde.GetDefaultAudioEndpoint(DataFlow.Render,Role.Multimedia);

            _device.AudioEndpointVolume.MasterVolumeLevel = DesiredLevel;

            _device.AudioEndpointVolume.OnVolumeNotification += SetVolume;
        }

        static void SetVolume(AudioVolumeNotificationData data)
        {
            if (Math.Abs(data.MasterVolume - DesiredLevel) > 0.1)
            {
                _device.AudioEndpointVolume.MasterVolumeLevel = DesiredLevel;
            }
        }
    }
}

解决方法

您可以调用Console.ReadLine()(如果要终止击键),或者只调用Thread.Sleep(Timeout.Infinite).
原文链接:https://www.f2er.com/csharp/100231.html

猜你在找的C#相关文章