コード例 #1
0
 public IlStructure(IlStructureType type, int startOffset, int endOffset, Instruction loopEntryPoint)
 {
     Debug.Assert(startOffset < endOffset);
     Type           = type;
     StartOffset    = startOffset;
     EndOffset      = endOffset;
     LoopEntryPoint = loopEntryPoint;
 }
コード例 #2
0
 public IlStructure(IlStructureType type, int startOffset, int endOffset, ExceptionHandler handler = null)
 {
     Debug.Assert(startOffset < endOffset);
     Type             = type;
     StartOffset      = startOffset;
     EndOffset        = endOffset;
     ExceptionHandler = handler;
 }
コード例 #3
0
		public IlStructure(IlStructureType type, int startOffset, int endOffset, ExceptionHandler handler = null)
		{
			Debug.Assert(startOffset < endOffset);
			Type = type;
			StartOffset = startOffset;
			EndOffset = endOffset;
			ExceptionHandler = handler;
		}
コード例 #4
0
		public IlStructure(IlStructureType type, int startOffset, int endOffset, Instruction loopEntryPoint)
		{
			Debug.Assert(startOffset < endOffset);
			Type = type;
			StartOffset = startOffset;
			EndOffset = endOffset;
			LoopEntryPoint = loopEntryPoint;
		}