Głęboka kopia obiektu

Czy mogę prosić o pomoc w wykonaniu głębokiej kopii obiektu.

Oto mój kod:

Option Explicit On
Option Strict On

<Serializable> Public Class [Class]
Private _Name As String
Private _ListOfFields As New List(Of Field)

Public Property Name As String
    Get
        Return _Name
    End Get
    Set(value As String)
        _Name = value
    End Set
End Property

Public Property ListOfFields As List(Of Field)
    Get
        Return _ListOfFields
    End Get
    Set(value As List(Of Field))
        _ListOfFields = value
    End Set
End Property

Public Function Clone() As [Class]
    Return DirectCast(Me.MemberwiseClone, [Class])
End Function

End Class

Pole jest klasą, którą sam napisałem.

Co muszę zmodyfikować, aby funkcja Clone () zwróciła głęboką kopię?

questionAnswers(2)

yourAnswerToTheQuestion