A typo
V3005 The ‘ProgressError’ variable is assigned to itself. Atf.Gui.Wpf.vs2010 StatusService.cs 24
public ProgressCompleteEventArgs(Exception progressError, object progressResult, bool cancelled) { ProgressError = ProgressError; ProgressResult = progressResult; Cancelled = cancelled; }
As a result of a typo, the ProgressError is assigned to itself, instead of the assignment progressError. Errors of such a kind are very common in those cases when the names of the variables differ in the case of one letter, like in the provided code fragment.
Please click here to see more bugs from this project.