mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
C#: Add change note
This commit is contained in:
14
csharp/change-notes/2021-05-03-implicit-constructor-init.md
Normal file
14
csharp/change-notes/2021-05-03-implicit-constructor-init.md
Normal file
@@ -0,0 +1,14 @@
|
||||
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.
|
||||
Reference in New Issue
Block a user