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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0023-24.cs
blob
ea8fa10c97433e763344901f4749262926a867be
1
// CS0023: The `?' operator cannot be applied to operand of type `int'
2
// Line: 9
3
4
public class
C
5
{
6
static void
Main
()
7
{
8
string
s
=
null
;
9
var
x
=
s
?.
Length
?.
ToString
();
10
}
11
}