c# 属性的访问器GET SET 方法不存在是什么情况?
publicclassSession{publicclassSystem{privatestaticstringstrBatchStartFlg=string.Empty...
public class Session
{
public class System
{
private static string strBatchStartFlg = string.Empty;
public static string BatchStartFlg
{
get
{
return strBatchStartFlg;
}
set
{
strBatchStartFlg = value;
}
}
}
}
在另一个类中调用这个方法的时候出错
错误信息:“方法不可见: 'Void System.set_BatchStartFlg(System.String)'”
编译是可以通过的 展开
{
public class System
{
private static string strBatchStartFlg = string.Empty;
public static string BatchStartFlg
{
get
{
return strBatchStartFlg;
}
set
{
strBatchStartFlg = value;
}
}
}
}
在另一个类中调用这个方法的时候出错
错误信息:“方法不可见: 'Void System.set_BatchStartFlg(System.String)'”
编译是可以通过的 展开
Storm代理
2023-08-29 广告
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I...
点击进入详情页
本回答由Storm代理提供
展开全部
这个是属性的写法。
get和set只是给属性的可读,可写而已。
所以你在外部调用的时候报错了。
vs2008 直接直接属性的快速写法
public static string BatchStartFlg{get;set;}
--------------
错误信息:“方法不可见: 'Void System.set_BatchStartFlg(System.String)'”
明显是没有找到改方法。
get和set只是给属性的可读,可写而已。
所以你在外部调用的时候报错了。
vs2008 直接直接属性的快速写法
public static string BatchStartFlg{get;set;}
--------------
错误信息:“方法不可见: 'Void System.set_BatchStartFlg(System.String)'”
明显是没有找到改方法。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.你贴出来的代码不存在方法,咱们叫get为可读属性,set为可写属性.
2.中间语言中才把get和set看做两个方法来调用
2.中间语言中才把get和set看做两个方法来调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我在本地测试 是可以通过运行的哦!!!
Session.System.BatchStartFlg
Session.System.BatchStartFlg
追问
会不会是Seasar搞得呢?
追答
Seasar 是啥?
Session.System.BatchStartFlg = "123";
MessageBox.Show(Session.System.BatchStartFlg);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询