예제 #1
0
        public static PhpBytes Append(object x, PhpBytes y)
        {
            Debug.Assert(!(x is PhpReference));

            return(PhpBytes.Concat(Convert.ObjectToPhpBytes(x), y));
        }
예제 #2
0
        public static PhpBytes Concat(PhpBytes x, object y)
        {
            Debug.Assert(!(y is PhpReference));

            return(PhpBytes.Concat(x, Convert.ObjectToPhpBytes(y)));
        }