a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
192 B
C#
19 lines
192 B
C#
using System;
|
|
|
|
class A {
|
|
public int foo = 1;
|
|
}
|
|
|
|
class B : A {
|
|
public new int foo ()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
B b = new B ();
|
|
Console.WriteLine (b.foo ());
|
|
}
|
|
}
|