CSPspEmu.Hle.HleCallback.PrependArguments C# (CSharp) Method

PrependArguments() public method

public PrependArguments ( ) : HleCallback
return HleCallback
        public HleCallback PrependArguments(params object[] Arguments)
        {
            this.Arguments = Arguments.Concat(this.Arguments);
            return this;
        }