System.Xml.Schema.XmlAtomicValue.ICloneable C# (CSharp) Method

ICloneable() private method

Since XmlAtomicValue is immutable, clone simply returns this.
private ICloneable ( ) : object
return object
        object ICloneable.Clone() {
            return this;
        }