Beispiel #1
0
        private void FillClassCollections(Type[] pTypes)
        {
            foreach (Type wAssType in pTypes)
            {
                int i = wAssType.Name.Length;

                if (wAssType.Name == m_TypeFilter || m_TypeFilter == String.Empty)
                {
                    AssemblyClass wClass = new AssemblyClass(wAssType);
                    m_ClassCollections.Add(wClass);
                }
            }
        }
Beispiel #2
0
		public bool Contains( AssemblyClass value )  
		{
			// If value is not of type Int16, this will return false.
			return( List.Contains( value ) );
		}
Beispiel #3
0
		private void FillClassCollections(Type[] pTypes)
		{
			foreach (Type wAssType in pTypes)
			{
			
				int i = wAssType.Name.Length ;
				
				if (wAssType.Name  == m_TypeFilter || m_TypeFilter == String.Empty )
				{
					AssemblyClass wClass = new AssemblyClass (wAssType);
					m_ClassCollections	.Add(wClass);
				}

			}

		}
Beispiel #4
0
		public void Insert( int index, AssemblyClass value )  
		{
			List.Insert( index, value );
		}
Beispiel #5
0
		public void Remove( AssemblyClass value )  
		{
			List.Remove( value );
		}
Beispiel #6
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
		public int Add( AssemblyClass value )  
		{
			return( List.Add( value ) );
		}
Beispiel #7
0
		public int IndexOf( AssemblyClass value )  
		{
			return( List.IndexOf( value ) );
		}
Beispiel #8
0
 public bool Contains(AssemblyClass value)
 {
     // If value is not of type Int16, this will return false.
     return(List.Contains(value));
 }
Beispiel #9
0
 public void Remove(AssemblyClass value)
 {
     List.Remove(value);
 }
Beispiel #10
0
 public void Insert(int index, AssemblyClass value)
 {
     List.Insert(index, value);
 }
Beispiel #11
0
 public int IndexOf(AssemblyClass value)
 {
     return(List.IndexOf(value));
 }
Beispiel #12
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="value"></param>
 /// <returns></returns>
 public int Add(AssemblyClass value)
 {
     return(List.Add(value));
 }