c#中,怎么把变量存储到内存中,任意form中都可以读取此变量的值,求代码
展开全部
1)新建一个“Windows窗体应用程序"
2)解决方案管理中,在项目中上,鼠标右键-->添加-->类
3)向项目中添加一个类 Class1.cs
namespace WindowsFormsApplication1
{
public static class Class1
{
public static int MyValue { get; set; }
}
}
4)在项目中,任何地方要使用变量MyValue,可以这样
Class1.MyValue = 100;
例如在Form1中
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;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
//使用变量MyValue
Class1.MyValue = 100;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询