IForeNETBuiltinAssemblies.SystemToBuiltin

Syntax

SystemToBuiltin(Value: String): String;

Parameters

Value is a name of assembly registration in GAC. To get the name used to register the assembly in GAC, use the SystemName property.

Description

The SystemToBuiltin property returns the assembly name that is used to name it within platform.

Comments

This property returns the assembly name, that is used to name it within platform, by the name of assembly registration in GAC.

Example

Sub UserProc;
Var
    BuiltAssms: IForeNETBuiltinAssemblies;
    i: Integer;
Begin
    BuiltAssms := ForeNETAssemblyClass.BuiltinAssemblies;
    For i := 0 To BuiltAssms.Count - 1 Do
        Debug.WriteLine(BuiltAssms.SystemToBuiltin(BuiltAssms.SystemName(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:

IForeNETBuiltinAssemblies