gpt4 book ai didi

c# - 无法找到事件源的事件日志代码错误?

转载 作者:行者123 更新时间:2023-11-30 22:50:57 26 4
gpt4 key购买 nike

我正在尝试使用事件日志来写入一些调试信息,但我无法让它工作。它提示无法找到事件源。我是否必须在操作系统上安装一些东西?

最佳答案

这是我从我们的一个应用程序中修改的代码。这可能会帮助您开始创作。

System.Diagnostics.EventLog eventLog1 = new System.Diagnostics.EventLog();
string eventLogName = "StackOverFlowEventName";
string eventLogSource = "StackOverFlowWebsite";

//This code HERE will create the Event for you
if (!System.Diagnostics.EventLog.SourceExists(eventLogSource))
{
System.Diagnostics.EventLog.CreateEventSource(eventLogSource, eventLogName);
}

eventLog1.Source = eventLogSource;
eventLog1.Log = eventLogName;
eventLog1.WriteEntry("This is a test");

关于c# - 无法找到事件源的事件日志代码错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/291169/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com