How to add reference to Microsoft.VisualBasic.dll?

后端 未结 3 1117
闹比i
闹比i 2020-12-01 12:56
using Microsoft.VisualBasic;

Microsoft.VisualBasic.Interaction.InputBox(\"Favourite RPG?\", \"Game\", \"Cool!\");

So what this does is basically a

3条回答
  •  既然无缘
    2020-12-01 13:32

    You need to add a reference to the Microsoft.VisualBasic.dll

    The using statement you have is not a reference. It's merely a shortcut so you don't have to type the full namespace every time you want to access a member inside it.

提交回复
热议问题