错误提示是当前上下文中不存在名称“S”。怎么回事啊?

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;using System.Collections.Generic;using System.Linq;using System.Text;
namespace classTest{ static class kuozhan {
static int s(this string str) { int id; int.TryParse(str, out id); return id;
} } public class a { public static void main(string []args) { string str1="456"; int i =s(str1); }
}
展开
 我来答
奉旨剪辑
2012-06-29 · 超过31用户采纳过TA的回答
知道答主
回答量:85
采纳率:0%
帮助的人:71.5万
展开全部
贴出来是这样:
using System;
using System.Collections.Generic; using System.Linq;using System.Text; namespace classTest{ static class kuozhan { static int s(this string str) { int id; int.TryParse(str, out id); return id; } } public class a { public static void main(string []args) { string str1="456"; int i =s(str1); } } 从上面可以看出int i=s(str1);不存在名称s,这个s就是s(str1);你想在这里调用s(this string str)所以你的这个方法前面应该加一个public 完整的是public static int s(this string str) 这样下面的方法才能调用它。
卷人2f
2012-06-29 · TA获得超过1352个赞
知道小有建树答主
回答量:1044
采纳率:50%
帮助的人:719万
展开全部
用kuozhan.s,还要加一个public,用它默认的,下面没有访问权限,照样不行;因为你的s没有定义为全局的,超出了作用域,所以提示不存在 。改成这样:
static class kuozhan {
public static int s(this string str) { int id; int.TryParse(str, out id); return id; } } public class a { public static void main(string []args) { string str1="456"; int i =kuozhan.s(str1); } }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友76005ab
2012-06-29 · TA获得超过119个赞
知道小有建树答主
回答量:155
采纳率:0%
帮助的人:75.4万
展开全部
做任务,请原谅
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
京华老街
2012-06-29 · 超过27用户采纳过TA的回答
知道答主
回答量:155
采纳率:0%
帮助的人:85万
展开全部
static
改成public static
追问
改了,还是不行啊
追答
应该可以的,要都改过来
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式