yavsc/web/FileInfoCollection.cs

22 lines
472 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
using System.Collections.Generic;
using System.IO;
namespace Yavsc
{
/// <summary>
/// File info collection.
/// </summary>
2014-07-16 20:35:03 +02:00
public class FileInfoCollection : List<FileInfo>
{
/// <summary>
/// Initializes a new instance of the <see cref="Yavsc.FileInfoCollection"/> class.
/// </summary>
/// <param name="collection">Collection.</param>
2014-07-16 20:35:03 +02:00
public FileInfoCollection (System.IO.FileInfo[] collection)
{
this.AddRange (collection);
}
}
}