示例#1
0
		/// <summary>
		/// Returns a new instance that is a copy of the original one.
		/// </summary>
		/// <param name="settings">A dictionary containing the names of the properties whose
		/// values are to be changed with respect to the original instance, or null to not
		/// modify any of those.</param>
		/// <returns>A new instance.</returns>
		public new OdbcEngine Clone(IDictionary<string, object> settings)
		{
			var cloned = new OdbcEngine();
			OnClone(cloned, settings); return cloned;
		}
示例#2
0
        /// <summary>
        /// Returns a new instance that is a copy of the original one.
        /// </summary>
        /// <param name="settings">A dictionary containing the names of the properties whose
        /// values are to be changed with respect to the original instance, or null to not
        /// modify any of those.</param>
        /// <returns>A new instance.</returns>
        public new OdbcEngine Clone(IDictionary <string, object> settings)
        {
            var cloned = new OdbcEngine();

            OnClone(cloned, settings); return(cloned);
        }
示例#3
0
		/// <summary>
		/// Returns a new instance that is a copy of the original one.
		/// </summary>
		/// <returns>A new instance.</returns>
		public new OdbcEngine Clone()
		{
			var cloned = new OdbcEngine();
			OnClone(cloned, null); return cloned;
		}
示例#4
0
        /// <summary>
        /// Returns a new instance that is a copy of the original one.
        /// </summary>
        /// <returns>A new instance.</returns>
        public new OdbcEngine Clone()
        {
            var cloned = new OdbcEngine();

            OnClone(cloned, null); return(cloned);
        }