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