我在我的程序中使用与图形相关的任何内容都很陌生,我很难过,因为它给了我错误var re = /\\/;
var str = 'OU=b\\,aditi,DC=zeus2,DC=com';
var subst = '\\\\';
var result = str.replace(re, subst);
document.getElementById("results").innerHTML = result
。我已经实例化了该对象,它仍然给我提出问题,我只是试图调用visual studio为windows面板制作的自动生成的代码。
以下是主要代码:
<div id="results"></div>
以下是我试图调用的课程(显示):
'type' does not contain a definition for 'member' and no extension method 'name' accepting a first argument of type 'type' could be found
你们可以提供的任何帮助都很棒,谢谢!
答案 0 :(得分:0)
这只是一个构造函数:
public Display()
{
InitializeComponent();
}
所以当你这样称呼时:
Display visualizer = new Display();
它实际上是被调用的构造函数,因此您不需要再次尝试调用它。
似乎应该只是:
namespace TesterProject
{
public class Program
{
static void Main(string[] args)
{
logInOut person = new logInOut();
Display visualizer = new Display();
person.login();
}
}
}