csharp 一种询问用户答案的​​方法,验证答案是否正确并返回所需的值。如果答案无效,它会询问

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 一种询问用户答案的​​方法,验证答案是否正确并返回所需的值。如果答案无效,它会询问相关的知识,希望对你有一定的参考价值。

private static object GetUserDecision(string question, Type typeToReturn, Func<object, bool> validator)
{
    string answer;
    if (typeToReturn == typeof(bool))
    {
        do
        {
            Write(question + " (y/n) ");
            answer = Console.ReadLine();
            answer = answer.ToLower().Trim();
        } while (answer != "y" && answer != "n");
        return answer == "y";
    }
    else if (typeToReturn == typeof(string))
    {
        do
        {
            Console.WriteLine(question);
            answer = Console.ReadLine();
        } while (!validator(answer));
        return answer;
    }
    return null;
}

private static bool GetUserDecision(string question)
{
    return (bool) GetUserDecision(question, typeof (bool), o => true);
}

以上是关于csharp 一种询问用户答案的​​方法,验证答案是否正确并返回所需的值。如果答案无效,它会询问的主要内容,如果未能解决你的问题,请参考以下文章

如何以编程方式确认Gmail自动转发验证?

整体二分

Django - 当页面不存在或用户未通过身份验证时返回更改答案

Pygame重启?

15个顶级Java多线程面试题及答案

在服务器端连接上验证AD用户PrincipalContext