Fix warnings

This commit is contained in:
Stone_Red
2026-03-05 23:02:36 +01:00
parent 789f56ba95
commit 38e8ac9b13
7 changed files with 18 additions and 15 deletions
@@ -7,6 +7,7 @@ using System.Threading;
namespace YesNt.Interpreter.Utilities;
/// <summary>Represents the method that handles the <see cref="FixedProcess.OutputDataReceived"/> and <see cref="FixedProcess.ErrorDataReceived"/> events.</summary>
public delegate void DataReceivedEventHandler(object sender, DataReceivedEventArgs e);
internal delegate void UserCallBack(string data);
@@ -81,6 +82,7 @@ internal class FixedProcess : Process
}
}
/// <summary>Provides data for the <see cref="FixedProcess.OutputDataReceived"/> and <see cref="FixedProcess.ErrorDataReceived"/> events.</summary>
public class DataReceivedEventArgs : EventArgs
{
internal string _data;