⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testdelphinetattributes.out

📁 格式化源码的最新板
💻 OUT
字号:
unit TestDelphiNetAttributes;

{
 Basic test of attributes in Delphi.NET
}
interface

uses
  Classes;

type

  [Serializable]
  TContainer = class(TObject)
  public
  end;

  [Serializable]
  TContainer2 = class(TObject)
  public
  end;

  TContainer3 = class(TObject)
  public
  end;

  [Serializable]
  TContainer4 = class(TObject)
  public
  end;


  [Serializable]
  TJCFConfiguration = class(TObject)
  public
    CommandlineParams: string;
    Style: integer;

    a, b, c: string;

    [NonSerialized]
    foo, bar: integer;
  end;

  TContainer6 = class(TObject)
  public
    [NonSerialized]
    foo, bar: integer;

    foo2, bar2: integer;

    [NonSerialized]
    foo3, bar3: integer;
    foo4, bar4: integer;
  end;

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -