HomeCSharpC# Error CS1065 – Default values are not valid in this context.

C# Error CS1065 – Default values are not valid in this context.

C# Error

CS1065 – Default values are not valid in this context.

Reason for the Error & Solution

Default values are not valid in this context.

Default values are used when declaring optional arguments. Optional arguments are not supported when declaring an anonymous method with the delegate operator. The delegate operator creates an anonymous method.

Example

The following sample generates CS1065:

// CS1065.cs (5,27)

class A
{
    delegate void D(int x);
    D d1 = delegate(int x = 42) { };
}

To correct this error

Removing the default value corrects this error:

class A
{
    delegate void D(int x);
    D d1 = delegate(int x) { };
}

Leave A Reply

Your email address will not be published. Required fields are marked *

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...