7 lines
151 B
C#
7 lines
151 B
C#
|
namespace Lesson5.Interfaces;
|
||
|
|
||
|
public interface IUserInput
|
||
|
{
|
||
|
static string AskStringInput(string prompt) => throw new NotImplementedException();
|
||
|
}
|