Mono.StackFrameData.StackFrameData C# (CSharp) Méthode

StackFrameData() private méthode

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
Résultat 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;
		}