これはばかげているように聞こえるかもしれませんが、本当に知りたいです:)現在c#を学んでいます。
ご存知のように、「オブジェクト」(ボタン、ラベル、テキスト、変数など)をパブリックまたは好きなものに設定する必要があります。
ただし、次のようなコードを記述する必要があります。
// my point is you cant just type label1.text you need to type class.label1.text
// so there is no chance of getting bugged
//because there is label1 in each of forms/classes
class Classlol = new class();
classlol.label1.blabla
では、他の形式で到達できないようにするポイントは何ですか? なぜすべてが公開されていないか、デフォルトで公開されていないのですか?
ありがとう。