Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# method summary new line

/// <summary> 
/// Your Main comment 
/// <para>This is line 1</para> 
/// <para>This is line 2</para> 
/// </summary> 

// Will show as:

Your Main comment
This is line 1
This is line 2
Comment

c# class summary, how to create a new line

/// <summary>
/// Line 1
/// <br>Line 2</br>
/// <br>Line 3</br>
/// </summary>

/*
Use <para> instead of <br> if you wish to add more spaces in-between lines.
The first line doesn't require a tag.

source of info: https://stackoverflow.com/a/22861545/14439562
*/
Comment

PREVIOUS NEXT
Code Example
Csharp :: how to stop rigidbody2d from falling in unity 
Csharp :: csharp check if env is development 
Csharp :: c# read file from path 
Csharp :: group by linq multiple columns c# 
Csharp :: How can you learn C# on your own 
Csharp :: c# delay 
Csharp :: json to httpcontent c# 
Csharp :: validate data exist in database lara vel 
Csharp :: bootstrap modal 
Csharp :: c# multiple catch exceptions 
Csharp :: remove carriage returns from string c# 
Csharp :: wpf restart application c# 
Csharp :: c# list sort by property string 
Csharp :: unity waituntil coroutine 
Csharp :: c# linq remove duplicate items from list of integer 
Csharp :: convert text to number c# 
Csharp :: how to deactivate objects through scripts in unity 
Csharp :: how do I print something in the console at the start of the game unity 
Csharp :: stop a thread c# 
Csharp :: unity spherecast 
Csharp :: c# byte array to bitmap 
Csharp :: asking for user input integer c# 
Csharp :: c# console foreground color 
Csharp :: how to make a custom cursor in windows forms c# 
Csharp :: bytes to httppostedfilebase c# 
Csharp :: c# current dir 
Csharp :: log to console c# unity 
Csharp :: C# Unit test IConfiguration 
Csharp :: c# String.Concat() 
Csharp :: c# windows forms print 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =