c#中,怎么把变量存储到内存中,任意form中都可以读取此变量的值,求代码

c#中,怎么把变量存储到内存中,任意form中都可以读取此变量的值。求代码... c#中,怎么把变量存储到内存中,任意form中都可以读取此变量的值。求代码 展开
 我来答
freeeeeewind
2014-10-10 · TA获得超过1万个赞
知道大有可为答主
回答量:3227
采纳率:94%
帮助的人:1356万
展开全部

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;
        }
    }
}
超大蒲公英
2014-10-10 · TA获得超过741个赞
知道小有建树答主
回答量:758
采纳率:75%
帮助的人:743万
展开全部
变量的值都是在内存中的,你将变量定义成static就可以了
追问
有详细代码吗?我是小白,谢谢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式