mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-14 11:50:27 +08:00
12 lines
211 B
C#
12 lines
211 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.Infrastructure.FileSystemHelper
|
|||
|
{
|
|||
|
public interface IFileWrapper
|
|||
|
{
|
|||
|
string[] ReadAllLines(string path);
|
|||
|
}
|
|||
|
}
|