c# 问题 应输入class,delegate,enum,interface或struct

#region properties
public string text
{
Get{
return this.label1.Text;
}
set
{
this.label1.Text = value;
}
}
#endregion

错误信息:应输入class,delegate,enum,interface或struct
还是不行,是上面public string text 这句有问题

试试看!

public string text
{
get
{
return this.label1.Text;
}
set
{
this.label1.Text = value;
}
}

刚才测试了下

属性是类里面的!所以
不能够单独创建属性,必须
你试试看

class myabc
{
public string text
{
get
{
return this.label1.Text;
}
set
{
this.label1.Text = value;
}
}
}

共同学习!

c#要注意大小写的!
温馨提示:内容为网友见解,仅供参考
无其他回答

c# 问题 应输入class,delegate,enum,interface或struct
public string text { get { return this.label1.Text;} set { this.label1.Text = value;} } 刚才测试了下 属性是类里面的!所以 不能够单独创建属性,必须 你试试看 class myabc { public string text { get { return this.label1.Text;} set { this.label1.Text = value;} } } ...

c# 问题 应输入class,delegate,enum,interface或struct
return this.label1.Text;} set { this.label1.Text = value;} } 刚才测试了下 属性是类里面的!所以 不能够单独创建属性,必须 你试试看 class myabc { public string text { get { return this.label1.Text;} set { this.label1.Text = value;} } } 共同学习!c#要注意大小写的!

...class、delegate、enum、interface 或 struct 什么意思啊_百度知 ...
class : 类 delegate:代理 enum:枚举 interface:接口 struct:数据结构

...class、delegate、enum、interface 或 struct是什么意思,帮忙修改...
你在定义变量的同时用using是错误的,应该是 SNTPTimeClient client = new SNTPTimeClient("10.43.109.16");\/\/获取时间的主机的IP;using放到文件开头引入类,底下所有using都如此

...class、delegate、enum、interface 或 struct
public partial class ctlClock { private static ValidateCredentialsDelegate credValidator = null;private static bool mValidationResult = false;private static int iTimes = 3;private static string strReturnValue = null;private static string passwordPattern = null;private static string userName;p...

C#中出现Expected class, delegate, enum, interface, or struct
一般正常的程序文件结构是这样的:using System;using System.Text;\/\/其他引用namespace YourNameSpace \/\/命名空间{ public class YourClass \/\/类声明 { private void Func1() \/\/各种方法 { \/\/... } private void Func2() { \/\/... } }} ...

...class、delegate、enum、interface 或 struct
你后面多了个 }或者多了个{ 这个东东,你把你的文件中的 {和}的对应个数,{ 和}的总和应该是偶数的!!代码不全,不知道是什么地方多了

c#问题:应输入 class、delegate、enum、interface 或 struct
所有这些代码外面应该有个 public static class SqlHelper{\/\/这里才放你的代码}

...class、delegate、enum、interface 或 struct是什么意思,帮忙修改...
首先,当有人看到这么多的代码时兴趣就没有,这就好比一座大楼有一块砖是坏的要你找出来,你会怎么想。虽然很简单,但是这么多的东西给你看你会高兴的。你只要吧错误的地方弄出来就好了,vs里面又不是错误没定位

...class、delegate、enum、interface 或 struct ”如何解决?
你少写代码了,你代码内容肯定出错了,比如函数写在类之外。等等..

相似回答