Hullaballoonatic
11/21/2019, 6:31 PMsealed class Foo {
object Bar : Foo()
}
vs
sealed class Foo
object Bar : Foo()
standard class syntax would imply Bar
has its own Bar
object in the first oneAndy Gibel
11/21/2019, 7:11 PMFoo.Bar
while the second would just be Bar
Andy Gibel
11/21/2019, 7:11 PMHullaballoonatic
11/21/2019, 7:14 PM