Training
Learning path
Implement classes, properties, and methods - Training
Learn how to create classes and objects in C# and how to securely access and manage encapsulated data using class properties and methods.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
What: Generate the code required to implement all pure virtual methods in a class.
When: You want to inherit from a class with pure virtual functions.
Why: You could manually implement all pure virtual functions one-by-one, however this feature will generate all method signatures automatically.
How:
Place your text or mouse cursor over the class in which you want to implement the pure virtual functions of the base class.
Next, do one of the following:
The pure virtual method signatures will be created automatically, ready to be implemented.
Training
Learning path
Implement classes, properties, and methods - Training
Learn how to create classes and objects in C# and how to securely access and manage encapsulated data using class properties and methods.