| ParticleSystemCreateInstanceCore Method |
When implemented in a derived class, creates a new instance of the
ParticleSystem derived class.
Namespace: DigitalRune.ParticlesAssembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax protected virtual ParticleSystem CreateInstanceCore()
Protected Overridable Function CreateInstanceCore As ParticleSystem
protected:
virtual ParticleSystem^ CreateInstanceCore()
abstract CreateInstanceCore : unit -> ParticleSystem
override CreateInstanceCore : unit -> ParticleSystem
Return Value
Type:
ParticleSystemThe new instance.
Remarks
Do not call this method directly (except when calling base in an implementation). This
method is called internally by the Clone method whenever a new instance of the
ParticleSystem is created.
Notes to Inheritors: Every ParticleSystem derived class must
implement this method. A typical implementation is to simply call the default constructor
and return the result.
See Also