Mosa.Compiler.Framework.Platform.OpcodeEncoder.AppendConditionalIntegerValue C# (CSharp) Method

AppendConditionalIntegerValue() public method

public AppendConditionalIntegerValue ( bool include, uint value ) : OpcodeEncoder
include bool
value uint
return OpcodeEncoder
        public OpcodeEncoder AppendConditionalIntegerValue(bool include, uint value)
        {
            if (include)
                return AppendIntegerValue(value);
            else
                return this;
        }