Question: The this reference refers to the instance itself in C#.
A
B
True
B
False
Note: Not available
public class Asset{ public string Name; } public class Stock : Asset{ public long SharesOwned; } public class House : Asset{ public decimal Mortgage; }