System.Collections.ArrayListExtensions.Any C# (CSharp) 메소드

Any() 개인적인 메소드

private Any ( [ collection ) : bool
collection [
리턴 bool
		public static bool Any([NotNull] this ArrayList collection)
		{
			return collection.Count > 0;
		}
	}
ArrayListExtensions