C# this は、別の表現は出来ないのでしょうか?
C#での勉強を始めて直後で、this というものが分からないのですが、
なんとなく、『自分自身』という事みたいなのですが、
https://docs.microsoft.com/ja-jp/dotnet/csharp/language-reference/keywords/this
に記載されていたコードですが、
this.name の this の記述部分ですが、そのものを示す記述方法は、無いのでしょうか?
『this が、そのもの』ですと言われそうですが、
例えば、下記のコードなのですが、
this.name
を
Employee.name
とか、そのものを表す記述方法は、存在しないのでしょうか?
Employee.name では、エラーになってダメでした。
該当のソースコード
C#
1public class Employee 2{ 3 private string alias; 4 private string name; 5 6 public Employee(string name, string alias) 7 { 8 this.name = name; 9 this.alias = alias; 10 } 11}
解決したならベストアンサーを決めて解決済みにしてください。
回答2件
あなたの回答
tips
プレビュー