Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

What object is streamwriter located under?

I am new at vb.net and would like to know

What object is streamwriter located under?
Is it a function or sub routine?

VS 2003:
I have a project with the folowing in code behind:

Dim sw As StreamWriter

I thought maybe I could drill down in the objects and find it.

I assume that is under System.IO?

I did an Ctrl ALT J in visual studio to look at the classes
and I cannot drill down to streamWriter?

Where can I find where streamwriter is located?
[521 byte] By [kenn_rosie] at [2007-11-11 8:04:07]
# 1 Re: What object is streamwriter located under?
kenn,

From the VS 2003 Help system:

StreamWriter Class

Implements a TextWriter for writing characters to a stream in a particular encoding.

For a list of all members of this type, see StreamWriter Members.

System.Object
System.MarshalByRefObject
System.IO.TextWriter
System.IO.StreamWriter

[Visual Basic]
<Serializable>
Public Class StreamWriter
Inherits TextWriter

Kerry Moorman
kmoorman at 2007-11-11 21:48:00 >