C#里error CS0136: 无法在此范围中声明名为“e”的局部变量或参数

Posted caimouse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#里error CS0136: 无法在此范围中声明名为“e”的局部变量或参数相关的知识,希望对你有一定的参考价值。

C#里error CS0136: 无法在此范围中声明名为“e”的局部变量或参数

在开发的过程中,一不小心,就会碰到这个出错CS0136。

特别在一些按钮函数里,当你写的代码比较长时,更加容易出现,这是为什么呢?

因为在这些函数里定义了一个函数参数e,如下:

private void button1_Click(object sender, EventArgs e)

是EventArgs类型。

又有于我们经常把异常的Exception,也定义为e,如果这时候不关注到参数里已经定义这个变量,

那么就会提示这个出错,就会一直找不到错误的地方。

如下的例子:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp31


    public partial class Form1 : Form
    
        static void ProcessString(string s)
        
            if (s == null)
            

以上是关于C#里error CS0136: 无法在此范围中声明名为“e”的局部变量或参数的主要内容,如果未能解决你的问题,请参考以下文章

(25)C# error CS0281: 友元访问权限

获取 openfire 消息需要哪一个 MAM XEP-0313 或 XEP-0136

error CS0201: 只有赋值、调用、递增、递减、等待和新对象表达式可以用作语句c#

C# Windows 窗体应用程序“参数无效。”

CS1.6进入后无法移动和射击,提示有错误!

GLFW3 错误:“glfwGetWin32Window”未在此范围内声明