Hi, I got a long description for my interface function.
IMyInterface.cs
[Description("Line 1 description content here! Line 2 description content here!Line 3 description content here!Line 4 description content here!Line 5 description content here!Line 6 description content here!")]
void foo()
{
}
How to convert the single line to multi lines style. thanks.
[Description("Line 1 description content here!
Line 2 description content here!Line 3 description content here!
Line 4 description content here!Line 5 description content here!
Line 6 description content here!")]
void foo()
{
}