I'm currently writing the Documentation for my program which works great until in need to document a methode like:
internal void MethodeB(int i, DateTime? date = null)
Like you can see it is optional and also Nullable. I tried to document this like:
/// <summary>
/// This method uses <see cref="MethodeB(Int32, System.DateTime)"/> internal todo some stuff
/// </summary>
but unfortunately it doesn't work (I get a warning after compiling which tells me that VS was unable resolve the cref)
How do i document this sort of parameter?
No comments:
Post a Comment