Esempio n. 1
0
        /// <summary>
        /// Adds a parameter to the method call, passed with reference semantics
        /// </summary>
        /// <param name="value">object to be passed as parameter</param>
        /// <returns>
        /// A reference to the instance which called this operation.
        /// </returns>
        public IMethodOperations AddRefParameter(object value)
        {
            InnerParameterBuilder.AddRefParameter(value);

            return(this);
        }