| ||||||||||||
What Do the Base Classes Do?
The number of base classes is huge, so there's no way that we can cover everything here. But here's a quick summary of the kind of things that can be done with them.
» Strings. String handling.
» Collections and Arrays. There are all sorts of permutations for storing sets of objects: Arrays, Lists, Maps, Linked lists. All implemented in highly efficient ways.
» WinForms. Classes to display windows and controls - text boxes, combo boxes, listboxes, file dialogs etc., and to react to events on those controls (Windows messages in low-level C++ parlance).
» WebForms. Classes that do roughly the same as many of the WinForms classes, but are designed to work over the Internet: Instead of creating the relevant control, they generate all the HTML needed to get a web browser to display something that looks and behaves like the control in question. You can use WebForms in your ASP.NET pages.
» File Handling. You can use .NET base classes to navigate around the file system on your machine or network, to check the properties of files, read, modify and write to files, and move and copy files and folders around.
» Registry Access. Base classes are available that allow you to navigate, read, and modify the contents of the registry.
» Internet. Using the base classes you can connect to the Internet and download and upload files.
» ADO.NET. The ADO.NET classes allow you to connect to a data source and read or modify it - much the same abilities as are offered by the existing ADO, except that ADO.NET is designed much more around the concept of disconnected data, and makes heavy use of XML for data transmission.
There's a lot more than this available, but this taster should give you an idea.
No comments:
Post a Comment