7 lines
147 B
C#
7 lines
147 B
C#
|
namespace Lesson5.Interfaces;
|
||
|
|
||
|
public interface IReadFile
|
||
|
{
|
||
|
static Task ReadByPathAsync(string path) => throw new NotImplementedException();
|
||
|
}
|