静态变量不变

时间:2018-02-19 17:16:30

标签: c# monogame

我有一个项目,分为3个单独的视觉工作室项目,一个游戏,控制台和图书馆项目,我试图从库中获取一个静态变量,从我的控制台项目更改,然后在游戏项目中读取它。这是一些清除它的代码:

这是我的库代码,我想要更改的一个变量

namespace LibraryProject.Values
{
    public class Variables
    {
        public static string LastSaid { get; set; }
    }
}

这是控制台项目,我在库项目中更改了这个字符串:

namespace ConsoleProject
{
        private void Client_OnMessageRecieved(object sender, OnMessageReceivedArgs e)
        {
            Console.WriteLine("Recieved message, the message was: " + e.ChatMessage.Message);
            Variables.LastSaid = e.ChatMessage.Message;
            Console.WriteLine("LastSaid is now: " + Variables.LastSaid);
        }
}

最后这是我的gameproject,它显示了屏幕上的值。

namespace LibraryProject
{
    public Interface(ContentManager content)
    {
    TextString lastSaid;


        public void Update()
        {
            lastSaid = new TextString(fonts.Font1, Variables.LastSaid, new Vector2(100, 100), Color.White);
        }
}

我的TextString类:

namespace LibraryProject
{
    class TextString
    {
        SpriteFont Font;
        string Text;
        Vector2 Position;
        Color Color;

        public TextString(SpriteFont font, string text, Vector2 position, Color color)
        {
            this.Font = font;
            this.Text = text;
            this.Position = position;
            this.Color = color;
        }

        public void Draw(SpriteBatch spriteBatch)
        {
            if (Text != null)
            {
                spriteBatch.DrawString(Font, Text, Position, Color);
            }
        }
    }
}

我的游戏项目:

namespace GameProject
{
    public class GameCore : Game
    {
        protected override void LoadContent()
        {
            Interface = new Interface(Content);
        }
        protected override void Update()
        {

            Interface.Update(gameTime);
}
}
}

我可以很好地更改Console项目中的值,我的控制台输出库项目中的LastSaid变量已更改,但是当我最终想要在我的游戏项目中输出LastSaid变量时,它根本不会改变当我检查变量时,它保持在实例化的值。有人可以帮我解释为什么会这样吗?

1 个答案:

答案 0 :(得分:3)

我假设您的GameProject和ConsoleProject是两个应用程序。

如果是这种情况,静态变量不会在两个进程之间共享,它们都有一个内存实例。即使静态变量属于库。

这个其他Q& A类似: Static members behavior with multiple instance of application - C#