Esempio n. 1
0
 public bool Contains(IDENTITY_COLUMN value)
 {
     // If value is not of type Column, this will return false.
     return(List.Contains(value));
 }
		public bool Contains( IDENTITY_COLUMN value )  
		{
			// If value is not of type Column, this will return false.
			return( List.Contains( value ) );
		}
Esempio n. 3
0
 public void Add(IDENTITY_COLUMN Identity)
 {
     List.Add(Identity);
 }
		public void Add(IDENTITY_COLUMN Identity)
		{
			List.Add( Identity );
		}