File tree Expand file tree Collapse file tree 2 files changed +35
-12
lines changed
testAssets/slnWithCsproj/src/app Expand file tree Collapse file tree 2 files changed +35
-12
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11using System ;
22namespace Test
33{
4- class testissue
5- {
6- ///<summary>Checks if object is tagged with the tag.</summary>
7- /// <param name="gameObject">The game object.</param>
8- /// <param name="tagName">Name of the tag.</param>
9- /// <returns>Returns <c>true</c> if object is tagged with tag.</returns>
10-
11- public static bool Compare ( int gameObject , string tagName )
12- {
13- return true ;
14- }
15- }
4+ class testissue
5+ {
6+ /// <summary>
7+ /// A cref <see cref="testissue"/>
8+ /// <br/>
9+ /// <strong>strong text</strong>
10+ /// <br/>
11+ /// <em>italic text</em>
12+ /// <br/>
13+ /// <u>underline text</u>
14+ /// <para>
15+ /// <list type='bullet'>
16+ /// <item>
17+ /// <description>Item 1.</description>
18+ /// </item>
19+ /// <item>
20+ /// <description>Item 2.</description>
21+ /// </item>
22+ /// </list>
23+ /// <a href = "https://google.com" > link text</a>
24+ /// </para>
25+ /// </summary>
26+ /// <exception cref='System.NullReferenceException'>
27+ /// Oh no!
28+ /// </exception>
29+ /// <param name='i'>an int</param>
30+ /// <returns>a string</returns>
31+ /// <remarks>
32+ /// Remarks are cool too.
33+ /// </remarks>
34+ public static bool Compare ( int gameObject , string tagName )
35+ {
36+ return true ;
37+ }
38+ }
1639}
You can’t perform that action at this time.
0 commit comments