C#

C#

Made by DeepSource

Comment is empty and adds no context CS-R1111

Anti-pattern
Major

Comments are usually left in the source code to add more context to the code. However, in this case, the comment is empty and adds no meaningful context. Either consider removing the comment altogether or adding some message.

Bad Practice

//

Recommended

// TODO: Handle edge case `xyz` later.