我有一个Web Api,我不知道为什么当我向它添加新方法并将Web Api放到网上时,新方法无法识别,如果我在本地运行应用程序,方法会被识别,我正在使用somee.com在线上传和运行我的应用程序,例如,如果我只添加了这个简单的方法:
[HttpGet]
[System.Web.Mvc.ValidateInput(false)]
public IHttpActionResult TestJustGet()
{
var x = "new method tested";
return Ok(x);
}
我在本地运行应用程序,它被识别(),但当我尝试使用在线应用程序无
来自:
我试着用:
using System.Text.RegularExpressions;
Dictionary<string, string> parameters = new Dictionary<string, string>();
parameters.Add("goodName1", "asdf");
parameters.Add("goodName2", "qwerty");
string text = "this is my {goodName1} template {goodN
我有以下原始字符串文字:@"some text ""here"" and some more text"当我将它赋给程序中的字符串变量时,一切都很好。
但是当我将这个字符串放入"some text ""here"" and some more text"并读取它时,它不会被识别为原始字符串。
我应该怎么做才能让C#将其识别为原始字符串?具体地说,用于指示字符串是原始字符串的'@‘说明符的编程等价物是什么?