BuiltinToSystem(Value: String): String;
Value is a name of assembly in the platform. To get the assembly name in the platform, use the BuiltinName property.
The BuiltinToSystem property returns full information of the platform system assembly.
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:
Registration name of assembly in GAC (For example: Prognoz.Platform.Interop.Metabase).
Version of assembly (For example: Version=5.25.13142.0).
Used culture (For example: Culture=neutral).
Public key token (For example: PublicKeyToken=4d4e6beada9c75bf).
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: