We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088786f commit e6f8fb0Copy full SHA for e6f8fb0
Mono.Debugging/Mono.Debugging.Evaluation/LiteralValueReference.cs
@@ -108,7 +108,7 @@ public override object Value {
108
return value;
109
}
110
set {
111
- throw new NotSupportedException ();
+ throw new NotSupportedException ("Assignment to a literal is not possible");
112
113
114
Mono.Debugging/Mono.Debugging.Evaluation/NullValueReference.cs
@@ -50,7 +50,7 @@ public override object Value {
50
return obj;
51
52
53
+ throw new NotSupportedException ("Assignment to the null literal is not possible");
54
55
56
0 commit comments