Files
codeql/csharp/change-notes/2021-05-03-implicit-constructor-init.md
2021-05-03 09:40:13 +02:00

299 B

lgtm,codescanning

  • Implicit base constructor calls are now extracted. For example, in
      class Base
      {
          public Base() { }
      }
    
      class Sub : Base
      {
          public Sub() { }
      }
    
    there is an implicit call to the Base constructor from the Sub constructor.