"Reuse, a technique that is important to most developers, allows you to avoid constantly reinventing the wheel by using functionality that has already been built and tested. Reuse increases productivity, by reducing the total amount of code you need to write, and reliability, since by using tested code, you (presumably) already know the code works reliably." " Public Sub Page_Load(o AS Object, e AS EventArgs) Dim oType As Type oType = Me.GetType Do Response.Write(oType.Name & "
") oType = oType.BaseType Loop While Not oType Is Nothing End Sub" "Type Name, Namespace, Assembly, Type Category, and Flags"