本人想问的是怎样才能解析代码 ,例如用VS2012能够显示某某属性自动调用了ToString(“d”);为什么下图没有显示Now自动调用ToString(“d”)、ToString(“t”)?
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace delete
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“{0:d}at{0:t}”, DateTime.Now);
}
}
}
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace delete
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“{0:d}at{0:t}”, DateTime.Now);
}
}
}
解决方案
100
找到了,不过本人这里好像不行。应该是系统有点问题吧。本人是VS2015,放的和你说的不一样。不过不是找到了。谢谢啦