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