using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.VisualBasic;namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            
        }
      
        private void Form1_Load(object sender, EventArgs e)
        {
            textBox1.Text = Interaction.InputBox.show("输入对话框", "参数", "100", -1, -1);
        }        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            
        }
    }
}
错误 1 “Microsoft.VisualBasic.Interaction.InputBox(string, string, string, int, int)”是一个“方法”,这在给定的上下文中无效 C:\Users\晓洁forever\Desktop\WindowsFormsApplication1\Form1.cs 23 41 WindowsFormsApplication1
这是怎么回事!!!!!!!!!