yavsc/web/FileInfoCollection.cs

15 lines
244 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
{
public class FileInfoCollection : List<FileInfo>
{
public FileInfoCollection (System.IO.FileInfo[] collection)
{
this.AddRange (collection);
}
}
}