BTDB.FieldHandler.SimpleFieldHandlerBase.Skip C# (CSharp) Method

Skip() public method

public Skip ( IILGen ilGenerator, Action pushReaderOrCtx ) : void
ilGenerator IILGen
pushReaderOrCtx Action
return void
        public void Skip(IILGen ilGenerator, Action<IILGen> pushReaderOrCtx)
        {
            if (_skipper == null) return;
            pushReaderOrCtx(ilGenerator);
            ilGenerator.Call(_skipper);
        }