C#: fix inconsistent type/constructor name

The code sample for the self-assignment query help had a different name
for the class and it's (intended) constructor, so was invalid.
This commit is contained in:
Julian Tibble
2018-08-08 22:42:06 +01:00
parent 0de9eed71c
commit bb9ce0e1fd

View File

@@ -1,7 +1,7 @@
class SelfAssignment
{
private int i;
public TestableTest(int i)
public SelfAssignment(int i)
{
i = i;
}