Mosa.Compiler.Framework.Platform.OpcodeEncoder.AppendConditionalIntegerValue C# (CSharp) 메소드

AppendConditionalIntegerValue() 공개 메소드

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