14 lines
456 B
ObjectPascal
14 lines
456 B
ObjectPascal
//winonly
|
|
{$reference 'PresentationFramework.dll'}
|
|
{$reference 'WindowsBase.dll'}
|
|
{$reference 'PresentationCore.dll'}
|
|
{$reference 'WindowsFormsIntegration.dll'}
|
|
uses System, System.Windows, System.Collections, System.Collections.Generic;
|
|
|
|
begin
|
|
var lst: System.Collections.Generic.List<integer> := new System.Collections.Generic.List<integer>();
|
|
Convert.ToInt32('23');
|
|
var ic: System.Windows.Input.ICommand;
|
|
var ic2: System.Windows.Input.ICommand;
|
|
|
|
end. |