Such as vs2019 c # console cannot prompt keywords such as base, seeks the solution (not have tried all the versions of vs)
CodePudding user response:
Or what is the free code hinting tools recommended
CodePudding user response:
Base used to parent class information in the inheritance, the console program without inheritance, Windows application or class library can have,
CodePudding user response:
. Make sure you will use the base,
public class A
{
The public (A) {}
The public A (string s) {}
}
Public class B: A
{
Public (B) : the base (" hello ")
{
}
}
CodePudding user response: