Mono.CSharp.SwitchLabel.Clone C# (CSharp) Method

Clone() public method

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

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