Exemple #1
0
        /// <summary>
        /// Copy constructor.<br>
        /// Initializes the components list with a deep copy of the source components list. </summary>
        /// <param name="source"> a field instance to copy
        /// @since 7.7 </param>
        public static Field16C newInstance(Field16C source)
        {
            Field16C cp = new Field16C();

            cp.Components = new List <>(source.Components);
            return(cp);
        }