Mono.StackFrameData.StackFrameData C# (CSharp) Method

StackFrameData() private method

private StackFrameData ( string line, string typeFullName, string methodSig, int offset, bool isILOffset, uint methodIndex, string mvid, string aotid ) : System
line string
typeFullName string
methodSig string
offset int
isILOffset bool
methodIndex uint
mvid string
aotid string
return System
		private StackFrameData (string line, string typeFullName, string methodSig, int offset, bool isILOffset, uint methodIndex, string mvid, string aotid)
		{
			LineNumber = -1;

			Line = line;
			TypeFullName = typeFullName;
			MethodSignature = methodSig;
			Offset = offset;
			IsILOffset = isILOffset;
			MethodIndex = methodIndex;
			Mvid = mvid;
			Aotid = aotid;
		}