OpenBveApi.Packages.ProblemReport.ProblemReport C# (CSharp) 메소드

ProblemReport() 공개 메소드

The progress report
public ProblemReport ( int progress, string file, Exception ex ) : System
progress int
file string
ex System.Exception
리턴 System
		public ProblemReport(int progress, string file, Exception ex)
		{
			Progress = progress;
			CurrentFile = file;
			Exception = ex;
		}
	}
ProblemReport