Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Source / Header Files

Status
Not open for further replies.

QwertGold

Programmer
Jun 25, 2001
17
DK
Hi All

I just started experimented with C#, comming from C++ I find mixing class declarations and implementation is very ugly, and not good for the overview.
Is there any way to use the old header/source concept when doing C#.

Thanks in advance
Klaus Grønbæk
 
No. C# does not use headers.

The advantage of having it all in one place is that there's less to keep track of. Plus, if you want to find out what services a class offers, you can use reflection very easily.

Chip H.
 
Forgot -

If you want to use a class that's in another assembly, you just set a reference to it in your project.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top