问候 在设置属性/字段/方法等的摘要时,是否可以在其中添加换行符? /// <summary> /// This is line 1 /// This is line 2 /// </summary> public bool TestLine { get; set; } 当我设置它时,它显示为鼠标悬停: bool TestLine This is line 1 This is line 2 但我希望它显示为: bool TestLine This is line 1 This is line 2 我试过使用,\n但不起作用。有什么办法可以做到这一点?
我正在尝试访问model.filefieldDjango中的,以使用该模块解析Python中的CSV文件csv。它可以在Windows上运行,但在Mac上可以达到以下目的: Exception Type: Error Exception Value: new-line character seen in unquoted field - do you need to open the file in universal-newline mode? 这是代码: myfile = customerbulk.objects.all()[0].fileup mydata = csv.reader(myfile) for email,mobile,name,civilid in mydata: print email,mobile,name,civilid