Chapter 9
Can I Use Your Namespace in the Library?
IN THIS CHAPTER
Dealing with separately compiled assemblies
Writing a class library
Using more access-control keywords
Working with namespaces
C# gives you a variety of ways to break code into meaningful, workable units. These methods include programmatic breaks, such as methods and classes, and structural breaks, such as libraries, assemblies, and namespaces.
You can use a method to divide a long string of code into separate, maintainable units. Use the class structure to group both data and methods in meaningful ways to further reduce the complexity of the program. This chapter also discusses use of partial classes and partial methods to break up things even further. Programs are complex already, and humans become confused easily, so we need all the help we can get.
C# provides another level of grouping: You can group similar classes into a separate library. Beyond writing your own libraries, you can use anybody’s libraries in your programs. These programs contain multiple modules known as assemblies. This chapter describes libraries ...
Get C# 10.0 All-in-One For Dummies now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.