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
/
cs0030-6.cs
blob
b43e21234da3ec98deed9160278829643c4daaec
1
// CS0030: Cannot convert type `System.DateTime' to `string'
2
// Line: 10
3
4
using
System
;
5
6
public class
Blah
7
{
8
public static void
Main
()
9
{
10
string
s
= (
string
)
DateTime
.
Now
;
11
}
12
}