C#: Add change note

This commit is contained in:
Tom Hvitved
2021-05-03 09:38:52 +02:00
parent c3890a9435
commit b77b3da8d6

View 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.