Skip to content

Commit b77b3da

Browse files
committed
C#: Add change note
1 parent c3890a9 commit b77b3da

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
lgtm,codescanning
2+
* Implicit base constructor calls are now extracted. For example, in
3+
```csharp
4+
class Base
5+
{
6+
public Base() { }
7+
}
8+
9+
class Sub : Base
10+
{
11+
public Sub() { }
12+
}
13+
```
14+
there is an implicit call to the `Base` constructor from the `Sub` constructor.

0 commit comments

Comments
 (0)