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