System.CodeDOM
System.Collections
, , , .
System.ComponentModel
,
(design-time) (runtime).
System.Configuration
,
.
System.Data
,
ADO.NET .
System.Diagnostics
, .
System.DirectoryServices
, Active Directory (managed code).
System.Drawing
, GDI+ .
System.IO
,
.
System.Net
,
FTP HTTP.
System.Reflection
, ,
.
System.Resources
, .
System.Security
, .NET Framework
.
System.ServiceProcess
, .
System.Text
, ASCII, Unicode, UTF-7, UTF-8
System.Timers
, Timer,
.
System.Web and related
namespaces
browser/server
ASP.NET web .
System.Windows.Forms
Windows- .
Form class
.
System.Xml
XML.
- System.Collections
. first-in, first-out . - Queue class:
Dim s As String
Dim q As New
Collections.Queue( )
q.Enqueue("To")
q.Enqueue("be")
q.Enqueue("or")
q.Enqueue("not")
Do While q.Count > 0
s = s & " "
& CStr(q.Dequeue)
Loop
msgbox(s)
: "To be or not."