摘要:
1 public GameObject showRewardPanel; 2 public Text SetCoinText; 3 public Text SetLevelText;//经验exp 4 private int getCoin; 5 private int getExp; 6 publ 阅读全文
摘要:
在平时的编码过程中,如果我们需要调用一个函数,对一个变量进行一系列的操作,那么我们可以使用值传递和引用传递两种方法。 下面我举一个简单的例子: public static void Main(string[] args) { int number = 5; Console.WriteLine("nu 阅读全文