BuiltinName(Index: Integer): String;
Index is an assembly index.
The BuiltinName property returns the name that is used to name the assembly within platform. Assembly index is passed by the Index parameter.
Sub UserProc;
Var
BuiltAssms: IForeNETBuiltinAssemblies;
i: Integer;
Begin
BuiltAssms := ForeNETAssemblyClass.BuiltinAssemblies;
For i := 0 To BuiltAssms.Count - 1 Do
Debug.WriteLine(BuiltAssms.BuiltinName(i));
End For;
End Sub UserProc;
After executing this example the assemblies' names used in the platform are displayed in the development environment console.
See also: