









When you put then in the array list you could check to see if the item already exists. This code snippet will check to see if the string is already in the array and will only add it when the item doesn't already exist in the list.
static void Main( string[] args )
{
ArrayList list = new ArrayList();
AddToList( list, "Table1" );
AddToList( list, "Table4" );
AddToList( list, "Table1" );
AddToList( list, "Table3" );
AddToList( list, "Table2" );
AddToList( list, "Table2" );
foreach ( string s in list ) //this will loop the collection to show there are no duplicates
{
Console.WriteLine( s );
}
}
private static void AddToList( ArrayList list, string p )
{
if ( list.Contains( p ) == false )
list.Add( p );
}
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。