Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Calling a base constructor
Message
 
To
14/07/2005 12:00:21
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 1.1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01032692
Message ID:
01032699
Views:
15
Here you go...
public class parent
{
  public parent(string s)
  {
  }
}

public class child : parent
{
  public child(string str4Parent, string str4Child) : base(str4Parent)
  {
  }
}
Previous
Reply
Map
View

Click here to load this message in the networking platform