IForeNETBuiltinAssemblies.BuiltinToSystem

Syntax

BuiltinToSystem(Value: String): String;

Parameters

Value is a name of assembly in the platform. To get the assembly name in the platform, use the BuiltinName property.

Description

The BuiltinToSystem property returns full information of the platform system assembly.

Comments

This property returns the full information of assembly by its name used in the platform.

The property returns the value that contains the following information on assembly:

Example

Sub UserProc;
Var
    BuiltAssms: IForeNETBuiltinAssemblies;
    i: Integer;
Begin
    BuiltAssms := ForeNETAssemblyClass.BuiltinAssemblies;
    For i := 0 To BuiltAssms.Count - 1 Do
        Debug.WriteLine(BuiltAssms.BuiltinToSystem(BuiltAssms.BuiltinName(i)));
    End For;
End Sub UserProc;

After executing this example, the full information on platform system assemblies is displayed in the development environment console.

See also:

IForeNETBuiltinAssemblies