- #1
MathematicalPhysicist
Gold Member
- 4,699
- 373
I have the following code which doesn't get compiled:
I used the following webapge:
http://csharp.net-tutorials.com/classes/inheritance/
Can you help me correct this code?
Thanks in advance.
Code:
using System;
using System.Collections;
namespace ConsoleApplication5
{
static void Main(string[] args) {
class Program {
public class Animal
{
public virtual void Greet()
{
Console.WriteLine("Hello, I'm some sort of animal!");
}
}
public class Dog : Animal
{
public override void Greet()
{
Console.WriteLine("Hello, I'm a dog!");
}
}
}
}
}
http://csharp.net-tutorials.com/classes/inheritance/
Can you help me correct this code?
Thanks in advance.