Do not use Optional on ref or out. parameters

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: csharp-best-practices/optional-ref-out

Language: C#

Severity: Info

Category: Best Practices

Description

The modifier Optional should not be used on ref or out parameters because it’s semantically incorrect:

  • an out parameter is used as a value to return from the function and, therefore, is not optional
  • a ref parameter is passed back to the caller

Non-Compliant Code Examples

class MyClass {

    public static void routine([Optional] out i)
    {
    }
}
class MyClass {
    public static void routine([Optional] ref int i)
    {
    }

}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis

PREVIEWING: antoine.dussault/service-representation-ga-docs-us1