Mono.CSharp.AbstractMessage.AbstractMessage C# (CSharp) Method

AbstractMessage() protected method

protected AbstractMessage ( int code, Mono.CSharp.Location loc, string msg, List extraInfo ) : System
code int
loc Mono.CSharp.Location
msg string
extraInfo List
return System
		protected AbstractMessage (int code, Location loc, string msg, List<string> extraInfo)
		{
			this.code = code;
			if (code < 0)
				this.code = 8000 - code;

			this.location = loc;
			this.message = msg;
			if (extraInfo.Count != 0) {
				this.extra_info = extraInfo.ToArray ();
			}
		}

Same methods

AbstractMessage::AbstractMessage ( AbstractMessage aMsg ) : System