System.Collections.ArrayListExtensions.Any C# (CSharp) Method

Any() private method

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