Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.31 KB

CS0114.md

File metadata and controls

17 lines (12 loc) · 1.31 KB

CS0114

Property Value
Id CS0114
Title 'function1' hides inherited member 'function2'. To make the current method override that implementation, add the override keyword. Otherwise add the new keyword.
Severity Warning
Official Documentation link

Code Fixes

  • Add 'new' modifier
  • Add 'override' modifier
  • Remove member declaration

(Generated with DotMarkdown)