Compiler Error CS0828
Cannot assign 'expression' to anonymous type property.
An anonymous type cannot be initialized with a null value or an unsafe type, or a method group or anonymous function.
- Either add a type declaration to the left side of the assignment, or change the expression on the right side so that it has an acceptable type.
The following code generates CS0828 because a member of an anonymous type cannot be initialized with a null value.
// cs0828.cs
using System;
public class C
{
public static int Main()
{
var a = 1;
var c = new { p1 = null }; // CS0828
return 1;
}
}
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.
משוב של .NET
.NET הוא פרויקט קוד פתוח. בחר קישור כדי לספק משוב: