2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0030-6.cs
blobb43e21234da3ec98deed9160278829643c4daaec
1 // CS0030: Cannot convert type `System.DateTime' to `string'
2 // Line: 10
4 using System;
6 public class Blah
8 public static void Main ()
10 string s = (string)DateTime.Now;