#829 – Add Comments to Indicate Shallow vs. Deep Copying
April 24, 2013 2 Comments
When you include a copy constructor or Clone method in your class, you should let users of your code know whether these operations are doing shallow or deep copies.
You can indicate whether the copy operation is shallow or deep using XML Documentation Comments. These comments will then be exposed to Intellisense and within the Object Browser in Visual Studio. (Provided that you have access to the source code).
For example:
public class Dog { public string Name { get; set; } public int Age { get; set; } public DogCollar Collar { get; set; } // Standard constructor public Dog(string name, int age) { Name = name; Age = age; } /// <summary> /// Make a (deep) copy of specified Dog /// </summary> /// <param name="otherDog">Dog to copy</param> public Dog(Dog otherDog) { Name = otherDog.Name; Age = otherDog.Age; Collar = new DogCollar(otherDog.Collar); } }
Intellisense will now show this comment:
As will the Object Browser: