Skip to content

Instantly share code, notes, and snippets.

@meason
Created January 9, 2015 15:43
Show Gist options
  • Save meason/fc470e42f43ee577b016 to your computer and use it in GitHub Desktop.
Save meason/fc470e42f43ee577b016 to your computer and use it in GitHub Desktop.
Delphi Code Commenting (XE3 Code Insight)
/// <summary>A summary of the target function or class</summary>
/// <para>Distinctively unleash interoperable users after exceptional innovation.
/// Efficiently promote exceptional catalysts for change without tactical e-services.</para>
/// <c>Text in fixed-width font</c>
/// <code>Preformatted text, such as source code </code>
/// <remarks>Remarks regarding the target function or class. You can also <b>bold text.</b></remarks>
/// <param name="ParameterOne">The name and description of a parameter one
/// <param name="ParameterTwo">The name and description of a parameter two
/// <see>Reference to a specific type, symbol, or identifier</see>
/// <returns>True when things are hunky dory. False when things haven't worked out.
/// <exception cref="EExceptionTypeName">Exception that can be thrown by a method</exception>
/// <permission cref="PermissionType">Permissions for a method</permission>
function Dummy(ParameterOne: string; ParameterTwo: Integer): Boolean;
begin
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment