C# 中的输入对话框

发布于 2024-12-11 20:28:17 字数 386 浏览 0 评论 0原文

我是 c# 新手,我正在尝试编写一段与下面用 java 编写的代码等效的代码。

我需要一个输入对话框,要求用户输入他的选择,遗憾的是我的尝试以运行时和编译时错误结束:)

我会感谢你的帮助,

这是 java 中的代码,我正在尝试在 c# 中实现

  do{

    String name = JOptionPane.showInputDialog(null, "PLEASE ENTER YOUR CHOICE OF    SQUARE NUMBER");

    choice = Integer.parseInt(name);
    choice --;
    }while(TicTac[choice]!=' ');

谢谢: )

i am new to c# , and i am trying to write a piece of code that is equivalent to code written in java below.

i need an input dialogue that asksthe user to enter his choice, sadly my attempts ended in both run time and compile time errors:)

i would apperciate your help

this is the code in java , which i am trying to implement in c#

  do{

    String name = JOptionPane.showInputDialog(null, "PLEASE ENTER YOUR CHOICE OF    SQUARE NUMBER");

    choice = Integer.parseInt(name);
    choice --;
    }while(TicTac[choice]!=' ');

Thank You:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小…楫夜泊 2024-12-18 20:28:17

添加对 Microsoft.VisualBasic.dll 的引用。

调用 Microsoft.VisualBasic.Interaction.InputBox(...)。

Add a reference to Microsoft.VisualBasic.dll.

Call Microsoft.VisualBasic.Interaction.InputBox(...).

谜兔 2024-12-18 20:28:17

@丹尼尔怀特是正确的。 C# 没有这个对话框。您可以使用他的示例加载 VB.Net 等效项。请参阅此处: VB.net 的 C# 版本是什么输入对话框?了解更多信息。

对于代码的其余部分:

while (TicTac[choice] != ' ')
{
     String name = Microsoft.VisualBasic.Interaction.InputBox(null, "PLEASE ENTER YOUR CHOICE OF SQUARE NUMBER");

    choice = Integer.parseInt(name);
    choice --;
}

这是一个快速复制/粘贴,但应该让您接近

@Daniel White is correct. C# doesn't have that dialog. You can load the VB.Net equivolent using his example. See here: What is the C# version of VB.net's InputDialog? for more.

For the rest of your code:

while (TicTac[choice] != ' ')
{
     String name = Microsoft.VisualBasic.Interaction.InputBox(null, "PLEASE ENTER YOUR CHOICE OF SQUARE NUMBER");

    choice = Integer.parseInt(name);
    choice --;
}

Thats a quick copy/paste but should get you close

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文