repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs1644-8.cs
blob
1b7d658b1e54f709c532ed3c86a678afdafbddf2
1
// CS1644: Feature `null coalescing operator' cannot be used because it is not part of the C# 1.0 language specification
2
// Line: 10
3
// Compiler options: -langversion:ISO-1
4
5
class
C
6
{
7
string
program
;
8
9
internal string
Program
{
10
get
{ return program ?? string.Empty; }
11
}
12
}