Click or drag to resize
DigitalRuneParticleSystemClone Method
Creates a new ParticleSystem that is a clone of the current instance.

Namespace: DigitalRune.Particles
Assembly: DigitalRune.Particles (in DigitalRune.Particles.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax
public ParticleSystem Clone()

Return Value

Type: ParticleSystem
A new ParticleSystem that is a clone of the current instance.
Remarks
Notes to Inheritors: The method Clone calls CreateInstanceCore which is responsible for creating a new instance of the ParticleSystem derived class and CloneCore(ParticleSystem) to create a copy of the current instance. Classes that derive from ParticleSystem need to implement CreateInstanceCore and CloneCore(ParticleSystem).
See Also