Initial import
This commit is contained in:
15
web/FileInfoCollection.cs
Normal file
15
web/FileInfoCollection.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user