本文介绍了如何在一个解决方案中访问项目中的公共变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有一个在类中定义的publice变量(vrPassword)。

如何在解决方案中跨不同项目访问其数据?



我不知道是否需要给这个班级任何重围?



谢谢

Hi,
I have a publice variable (vrPassword) that is defined in a class.
How to access its data across different projects in a solution?

I do not know if any re fences to this class needs to be given?

Thanks

推荐答案

using ASample;

(其中ASample是项目名称包含 vrPassword



您现在可以使用该变量

(where "ASample" is the name of your project that contains vrPassword

You can now use that variable

YourClass yc = new YourClass();
MessageBox.Show(yc.AVariable.ToString());



或者您可以使用省略并使用


or you can omit the using and use

ASample.YourClass yc = new ASample.YourClass();
MessageBox.Show(yc.AVariable.ToString());


这篇关于如何在一个解决方案中访问项目中的公共变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-07 22:44