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

15 lines
299 B
Markdown

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