MySql.Data.Entity.PropertyFragment.Clone C# (CSharp) Méthode

Clone() public méthode

public Clone ( ) : PropertyFragment
Résultat PropertyFragment
    public PropertyFragment Clone()
    {
      PropertyFragment newPF = new PropertyFragment();
      foreach (string prop in Properties)
        newPF.Properties.Add(prop);
      return newPF;
    }
  }