2019年8月7日 星期三

[C#] console 實現全域變數



簡單的方式就是實做一個class, 裡面宣告一個靜態(static)的欄位即可達到共用變數效果

public class Global
{
    public static string _content = "";
}

沒有留言:

張貼留言