Skip to content

Remove param from xml comment (CC0057) #732

@kwhitefoot

Description

@kwhitefoot

This is for both C# and VB.

  ''' <summary>
  ''' 
  ''' </summary>
  ''' <param name="F"></param>
  ''' <param name="G"></param>
  Public Sub New(ByVal F As Boolean, ByVal G As String)

Current output after fix applied (if it is a code fix bug):

  ''' <summary>
  '''
  ''' </summary>
  ''' <param name="F"></param>
  ''' <param name="G"></param>
  Public Sub New(ByVal F As Boolean)

Expected output after fix applied (if it is a code fix bug):

  ''' <summary>
  '''
  ''' </summary>
  ''' <param name="F"></param>
  Public Sub New(ByVal F As Boolean)

@AdSoares is working on it.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions