Mono.CSharp.SwitchLabel.Clone C# (CSharp) Méthode

Clone() public méthode

public Clone ( CloneContext clonectx ) : SwitchLabel
clonectx CloneContext
Résultat SwitchLabel
		public SwitchLabel Clone (CloneContext clonectx)
		{
			if (label == null)
				return this;

			return new SwitchLabel (label.Clone (clonectx), loc);
		}
	}