这个箭头符号出了什么问题?

时间:2018-06-05 15:37:57

标签: c#

我在c#中有以下文件,我正在使用VS 2013,但我陷入了“=>”符号,VS总是要求“;”就在“=>”之后以下文件中的符号:

namespace GlobomanticsElectricCompany.BillProcessor.Models
{
    public class ContactInfo
    {
        public string Line1 { get; set; }
        public string Line2 { get; set; }
        public string City { get; set; }
        public string State { get; set; }
        public string Zip { get; set; }
        public string Phone { get; set; }
        public string Email { get; set; }
        public string CityStateZip => $"{City}, {State} {Zip}";
    }
}

我应该怎么做让VS识别出“=>”符号

1 个答案:

答案 0 :(得分:1)

我最近遇到过这个问题;我不相信=>语法在该版本的Visual Studio中有效。试着像这样定义它:

    public string CityStateZip
    {
        get
        {
            return City + " , " + State + " " + Zip;
        }
    }