How to add reference to Microsoft.VisualBasic.dll?

一世执手 提交于 2019-11-27 05:50:05

问题


using Microsoft.VisualBasic;

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

So what this does is basically ask the user their favourite RPG. Then it displays the default value. I know this is a small example but my program will not run because I'm getting this error:

The type or namespace name 'Interaction' does not exist in the namespace 'Microsoft.VisualBasic' (are you missing an assembly reference?)

Originally I found this here


回答1:


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.




回答2:


In addition to using Microsoft.VisualBasic; add the reference, too. Here's a visual answer:

Then




回答3:


Right click your References in the Solution Explorer click Add Reference,then search for Microsoft.VisualBasic and add it to your references.

For more information see this documentation: How to: Add or Remove References By Using the Add Reference Dialog Box



来源:https://stackoverflow.com/questions/21212194/how-to-add-reference-to-microsoft-visualbasic-dll

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!