C#中当前上下文不存在名称的问题

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... 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 System.Security.Policy;
using System.Text.RegularExpressions;
using Microsoft.Office.Core;
using powerpoint = Microsoft.Office.Interop.PowerPoint;
using graph = Microsoft.Office.Interop.Graph;

namespace 记事本
{
public partial class Form1 : Form
{
private void Form1_Load(object sender, EventArgs e)
{
richTextBox1.KeyDown += new KeyEventHandler(richTextBox1_KeyDown);
}
public static string getlastword(string str, int i)
{
string x = str;
Regex reg = new Regex(@"\s+[a-z]+\s*", RegexOptions.RightToLeft);
x = reg.Match(x).Value;
Regex reg2 = new Regex(@"\s");
x = reg.Replace(x, "");
return s;
}
void richTextBox1_KeyDown(object sender, KeyEventArgs e)
{

RichTextBox richtextbox1 = (RichTextBox)sender;
string s = getlastword(richtextbox1.Text, richtextbox1.SelectionStart);

if (allclass().IndexOf(s) > -1)
{
myselect(richtextbox1, richtextbox1.SelectionStart, s, Color.CadetBlue, true);
}
}
}
}

错误发生在getlastword里面那个return s;上,说当前上下文不存在名称"s",该怎么修改才能让程序正常?
展开
 我来答
killnow5788
2010-04-05 · TA获得超过241个赞
知道小有建树答主
回答量:270
采纳率:0%
帮助的人:222万
展开全部
return x;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
menghanbest1
2013-03-04
知道答主
回答量:22
采纳率:0%
帮助的人:7.7万
展开全部
你那个程序根本没有定义S当然没有。。。。
return x;
就OK了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式