repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0558.cs
blob
558bb79813bad78cc5491f61b99e4418992ef246
1
// cs0558.cs: User-defined operator `SampleClass.implicit operator bool(SampleClass)' must be declared static and public
2
// Line: 5
3
4
class
SampleClass
{
5
static implicit operator bool
(
SampleClass
value
) {
6
return true
;
7
}
8
}