Mono.StackFrameData.StackFrameData C# (CSharp) 메소드

StackFrameData() 개인적인 메소드

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
리턴 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;
		}