Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      uc.Description = "Main uCalc Instance"
      
      '// Get the DataType object for Int32
      Dim intType = uc.DataTypeOf(BuiltInType.Integer_32)
      
      '// Use the .uCalc() method to get back to the parent instance and read its description.
      Console.WriteLine(intType.uCalc.Description)
   End Sub
End Module