SystemToBuiltin(Value: String): String;
Value is a name of assembly registration in GAC. To get the name used to register the assembly in GAC, use the SystemName property.
The SystemToBuiltin property returns the assembly name that is used to name it within platform.
This property returns the assembly name, that is used to name it within platform, by the name of assembly registration in GAC.
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: