.NETCORE
文章平均质量分 79
闪耀星星
脚踏实地
展开
-
ASP.NET CORE 跨域
// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { //配置跨域处理 services.AddCors(); services.AddControll.原创 2020-09-29 19:40:12 · 338 阅读 · 0 评论 -
csx调试C#代码
.net 脚本csx,vscode新建一个csx文件,运行该文件可以直接打印输出结果;安装:https://www.nuget.org/packages/dotnet-script/dotnet tool install --global dotnet-script --version 0.50.1测试安装:dotnet-script --version输出:例子:...原创 2020-01-03 11:53:40 · 960 阅读 · 0 评论 -
.net core WebSocket
WebSocketMiddleware.csusing Microsoft.AspNetCore.Http;using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net.WebSock...原创 2018-07-01 18:37:03 · 2389 阅读 · 0 评论