Pilot2Derived

Pilot2Derived.cs
01/* Copyright (C) 2007 db4objects Inc. http://www.db4o.com */ 02 03namespace Db4objects.Db4odoc.QBE 04{ 05 class Pilot2Derived : Pilot2 06 { 07 public Pilot2Derived(string name, int points):base (name, points) 08 { 09 } 10 } 11}
 

Pilot2Derived.vb
01' Copyright (C) 2007 db4objects Inc. http://www.db4o.com 02 03Namespace Db4objects.Db4odoc.QBE 04 Class Pilot2Derived 05 Inherits Pilot2 06 Public Sub New(ByVal name As String, ByVal points As Integer) 07 08 MyBase.New(name, points) 09 End Sub 10 End Class 11End Namespace