Axiom.Scripting.Compiler.ScriptCompiler.CompileError.CompileError C# (CSharp) Метод

CompileError() публичный Метод

public CompileError ( CompileErrorCode code, string file, uint line, string msg ) : System
code CompileErrorCode
file string
line uint
msg string
Результат System
			public CompileError( CompileErrorCode code, string file, uint line, string msg )
				: this()
			{
				this.Code = code;
				this.File = file;
				this.Line = line;
				this.Message = msg;
			}
ScriptCompiler.CompileError