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