Oxygene中的命名空间别名

时间:2013-07-08 00:20:58

标签: .net oxygene

有没有办法在Oxygene .net中使用命名空间别名?

即: 什么是Oxygene相当于C#代码  using someOtherName = System.Timers.Timer;

1 个答案:

答案 0 :(得分:2)

是的,这是可能的,只需定义它就像定义类型一样。 例如:

namespace ConsoleApplication37;

interface

type
  ConsoleApp = class
  public
    class method Main(args: array of String);
  end;

  someOtherName = System.Timers.Timer;

implementation

class method ConsoleApp.Main(args: array of String);
begin
  var t1 := new someOtherName;
end;

end.