Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim intType = uc.DataTypeOf(BuiltInType.Integer_32)
      
      '// Get the Item representation of the DataType
      Dim itemHandle = intType.Item
      
      Console.WriteLine($"Data Type Name via Item: {itemHandle.Name}")
   End Sub
End Module