Skip to content

Instantly share code, notes, and snippets.

@jzwang-dev
Last active February 20, 2021 07:10
Show Gist options
  • Save jzwang-dev/ab6d37375588983e0895c1af26d74f25 to your computer and use it in GitHub Desktop.
Save jzwang-dev/ab6d37375588983e0895c1af26d74f25 to your computer and use it in GitHub Desktop.
using System.Web.Mvc;
namespace VersionConflicts.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
Response.Write(Newtonsoft.Json.JsonConvert.SerializeObject(new
{
msg = "序列化自「應用程式」"
}));
return Content("");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment