HomeCSharpC# Error CS0578 – The Conditional attribute is not valid on ‘{0}’ because its return type is not void

C# Error CS0578 – The Conditional attribute is not valid on ‘{0}’ because its return type is not void

C# Error

CS0578 – The Conditional attribute is not valid on ‘{0}’ because its return type is not void

Reason for the Error & Solution

The Conditional attribute is not valid on ‘function’ because its return type is not void

cannot be applied to a method that has a return type other than void. The reason for this is that any other return type for a method may be needed by another part of your program.

Example

The following sample generates CS0578. To resolve this error, you must either delete , or you must change the return value of the method to void.

// CS0578.cs
// compile with: /target:library
public class MyClass
{
    [System.Diagnostics.ConditionalAttribute("a")]   // CS0578
    public int TestMethod()
    {
        return 0;
    }
}

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...