System.Reflection.Emit.ILExceptionInfo.AddFault C# (CSharp) Method

AddFault() private method

private AddFault ( int offset ) : void
offset int
return void
		internal void AddFault (int offset)
		{
			int i;
			End (offset);
			add_block (offset);
			i = handlers.Length - 1;
			handlers [i].type = ILExceptionBlock.FAULT;
			handlers [i].start = offset;
			handlers [i].extype = null;
		}