相关题目
单选题
在C#程序中,以下( )代码显示一个模式对话框
单选题
在C#中,若想向数据库中插入一条记录,应使用Command对象的( )方法。(选1项)
单选题
在C#中,要设置一个窗体为MDI窗体,必须设置其( )属性
单选题
在C#中,下列关于类和对象的描述,不正确的是( )
单选题
在C#中,下列关于多文档界面(MDI)应用程序的描述,不正确的是( )
单选题
在C#中,下列关于窗体属性的说法,不正确的是( )
单选题
在C#中,下列关于窗体事件的描述,不正确的是( )
单选题
在C#中,以下代码输出结果是( )
string str="abcd";
int result=str.IndexOf("a");
Console.WriteLine(result);
单选题
在C#中,以下代码输出结果是( )
string str = "abcd";
int result = str.LastIndexOf("d");
Console.WriteLine(result);
单选题
在C#中,以下代码输出结果是( )
string str = "aaa@qq.com";
string[] result = str.Split('@');
Console.WriteLine(result[0]);
