在另一个类中重用变量

在另一个类中重用变量

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

问题描述



我的程序中有两节课.在我的first.class中,我在变量中定义了一些值,请参见下面的代码:

var x= System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();
var y= Path.GetFileName(x);

MessageBox.show(x);




如何在我的second.class中使用这些值?

在此先感谢

解决方案



Hi,

I''ve two classes in my program. In my first.class I defined some value in variables, see code below:

var x= System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();
var y= Path.GetFileName(x);

MessageBox.show(x);




How can I use those values in in my second.class ??


Thanks in advance

解决方案




这篇关于在另一个类中重用变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 16:03