asked on
/// <summary>
/// Creates a customer and returns the new id. Negative error number.
/// </summary>
/// <param name="newCustomer">Customer object to be created.</param>
/// <returns>Id of created customer. Negative if error.</returns>
/// See <see cref="Customer"/> for the object.
/// See <seealso cref="GetCustomer(long)"/> to get the object.
ASKER
The <remarks> tag is used to add information about a type, supplementing the information specified with <summary>. This information is displayed in the Object Browser window.
Compile with -doc to process documentation comments to a file.
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).
TRUSTED BY