// ----------------------------------------------------------------------
 public void Add( IRtfHtmlCssStyle item )
 {
     if ( item == null )
     {
         throw new ArgumentNullException( "item" );
     }
     InnerList.Add( item );
 }
コード例 #2
0
        }         // CopyTo

        // ----------------------------------------------------------------------
        public void Add(IRtfHtmlCssStyle item)
        {
            if (item == null)
            {
                throw new ArgumentNullException("item");
            }
            InnerList.Add(item);
        }         // Add
 // ----------------------------------------------------------------------
 public void CopyTo( IRtfHtmlCssStyle[] array, int index )
 {
     InnerList.CopyTo( array, index );
 }