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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0428-3.cs
blob
61b788edace1774aa9993322f60be89c6f582251
1
// CS0428: Cannot convert method group `Count' to non-delegate type `int'. Consider using parentheses to invoke the method
2
// Line: 11
3
4
using
System
.
Linq
;
5
6
public class
A
7
{
8
public
A
()
9
{
10
string
[]
test
=
new string
[
5
];
11
A
[]
array
=
new
A
[
test
.
Count
];
12
}
13
}