MimeTypeInfoICloneableClone Method
Creates a new object that is a copy of the current instance.
Namespace: FolkerKinzel.MimeTypesAssembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
Object ICloneable.Clone()
Private Function Clone As Object Implements ICloneable.Clone
private:
virtual Object^ Clone() sealed = ICloneable::Clone
private abstract Clone : unit -> Object
private override Clone : unit -> Object
ObjectA new object that is a copy of this instance.
ICloneableClone
If you intend to hold a
MimeTypeInfo for a long time in memory
and if this
MimeTypeInfo is parsed from a
ReadOnlyMemory<Char> that comes from a
very long
String, keep in mind, that the
MimeTypeInfo
holds a reference to that
String. Consider in this case to make
a copy of the
MimeTypeInfo structure: The copy is built on a separate
String that is case-normalized and only as long as needed.
Use the instance method
Clone, if you can, to avoid the
costs of boxing.