예제 #1
0
        //Methods
        /// <summary>
        /// See the base.
        /// </summary>
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            TanHSettings cmpSettings = obj as TanHSettings;

            return(true);
        }
예제 #2
0
파일: TanHSettings.cs 프로젝트: thild/NET
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="source">Source instance</param>
 public TanHSettings(TanHSettings source)
 {
     return;
 }
예제 #3
0
        /// <summary>
        /// Creates the deep copy instance of this instance
        /// </summary>
        public TanHSettings DeepClone()
        {
            TanHSettings clone = new TanHSettings(this);

            return(clone);
        }