yavsc/web/FileInfoCollection.cs

23 lines
472 B
C#

10 years ago
using System;
using System.Collections.Generic;
using System.IO;
namespace Yavsc
{
/// <summary>
/// File info collection.
/// </summary>
10 years ago
public class FileInfoCollection : List<FileInfo>
{
/// <summary>
/// Initializes a new instance of the <see cref="Yavsc.FileInfoCollection"/> class.
/// </summary>
/// <param name="collection">Collection.</param>
10 years ago
public FileInfoCollection (System.IO.FileInfo[] collection)
{
this.AddRange (collection);
}
}
}