19 lines
331 B
C#
19 lines
331 B
C#
![]() |
using System;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Utility
|
|||
|
{
|
|||
|
internal class MZipArchiveFactory
|
|||
|
{
|
|||
|
public static IZipArchive OpenOnStream(Stream stream)
|
|||
|
{
|
|||
|
return MZipArchive.OpenOnStream(stream);
|
|||
|
}
|
|||
|
|
|||
|
public static IZipArchive CreateOnStream(Stream stream)
|
|||
|
{
|
|||
|
return MZipArchive.CreateOnStream(stream);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|