@same reference
There is no reason to use this tag, it only exists for backward compatibility. If somewhere in tag section of VSdocman comment @same tag appears, whole comment is ignored and comment of referenced object is used instead. It is useful when commenting several classes containing the same properties or methods. For example, let's have two classes C1 and C2. They both have size property with the same meaning.
In C1 class:
'** 'Sets/returns the size of .... Public Property size() As Integer
In C2 class:
'** '@same C1.size Public Property size() As Integer