Pan – XML ​​Comments – How to correct SEE Also tags correctly?

I have the following content, and I don’t know how to quote it correctly in my XML comments:

public static class FooExtensions
{
public static Nullable FooX(this Nullable foo) {... }
}


public class Bar
{
///
/// Bar Function
///

///
public void BarFunc() {... }
}

So, I guess it is

You don’t need to mark this part of the parameter, nor its name, so you should be able to use:

I have the following and I don’t know how to quote it correctly in my XML comments :

public static class FooExtensions
{
public static Nullable FooX(this Nullable foo) { ... }
}


public class Bar
{
///
/// Bar Function
///

///
public void BarFunc() {... }
}

< p>So, I guess it is , but if this is correct, I am not 100%. Does anyone know?

Oh, I have an ECMA PDF document, but even so, I still can’t figure it out.

You don’t need to mark this parameter Part, there is no need to mark its name, so you should be able to use:

Leave a Comment

Your email address will not be published.