2019年6月3日 星期一
你到底有多精通 C# ?
dalbll.com| dalbll.com |21:46:18
即使是具有良好 C# 技能的开发人员有时候也会编写可能会出现意外行为的代码。本文介绍了属于该类别的几个 C# 代码片段,并解释了令人惊讶的行为背后的原因。Null
What’s new in Azure SignalR 1.1.0 Preview 1
Ken Chen| ASP.NET Blog |08:17:45
We just shipped 1.1.0 Preview 1 of Azure SignalR Service SDK to support some new features in ASP.NET Core 3.0, including endpoint routing and server-side Blazor. Let’s take a look how you can use them in your Azure SignalR application.He...
2019年5月25日 星期六
网站发布到IIS报错:错误代码 0x80070021
dalbll.com| dalbll.com |11:06:34
我今天发布一个网站到IIS服务器,该程序在我本机用VS自带的服务器调试是可以正常运行的,但是当我把这个程序发布到测试服务器的IIS上时,系统报错了,具体报错信息
2019年5月24日 星期五
.NET Core 批量重置 Azure Blob Storage 的 mime type
dalbll.com| dalbll.com |09:50:24
我的博客使用 Azure Blob Storage 存储文章配图,结果今天玩 Azure CDN 的时候爆了,原因是图片mime type不对。我们来看看
2019年5月20日 星期一
Using Retry Pattern In ASP.NET Core Via Polly
Catcher Wong| www.c-sharpcorner.com |00:00:00
In this article, we will discuss how to use retry pattern in ASP.NET Core via Polly with two easy samples.
2019年5月19日 星期日
C#上传任何格式类型的文件到FTP Server的实现方式
dalbll.com| dalbll.com |23:03:48
微软在MSDN上有提供一个C#上传文件到FTP服务器的实现方式,实现代码如下:using System;
2019年5月18日 星期六
Getting Started With ASP.NET Core
Jignesh Kumar| www.c-sharpcorner.com |00:00:00
This article explains how to start working with ASP.NET Core and create a console application or a web application.
2019年5月17日 星期五
使用.NET Core Global Tools解决分发问题
dalbll.com| dalbll.com |09:30:02
命令行是程序员装逼利器,.NET Core也可以写命令行程序,但是如何分发给其他程序员使用,一直是个问题
2019年5月14日 星期二
.NET Core 如何禁止.resx文件自动生成Designer.cs
dalbll.com| dalbll.com |23:09:52
在 Visual Studio 中,如果我们在一个 .NET Core 工程里加入了一个资源文件(.resx),那么你会发现有个对应的 .Designer.cs 文件被自动生成
7个对象——让你了解ASP.NET Core框架的本质
dalbll.com| dalbll.com |23:09:52
2019年1月19日,微软技术(苏州)俱乐部成立,我受邀在成立大会上作了一个名为《ASP.NET Core框架揭秘》的分享。在此次分享中,我按照
Azure Dev Spaces的简单介绍
dalbll.com| dalbll.com |21:09:52
上周在build上,微软宣布了Azure dev spaces的一些特效。这个针对AzureKubernetes服务(AKS)的附加组件使您的团队能够使用云上开发应用程序
C#中如何去除字符串左边的0
dalbll.com| dalbll.com |12:02:18
我有一个系统需要从人事系统读取员工信息,在人事系统中的工号有些是由0开头的,比如000236,025855,000015,但我自己的系统存储的
Simple Blazor Game Development Using .NET Core 3.0 Preview, Web API, And Visual Studio 2019
Syed Shanu| www.c-sharpcorner.com |00:00:00
In this article, we will see how to create a simple game development web application using ASP.NET Core Blazor, .NET Core 3.0 Preview, and Visual Studio 2019.
2019年5月13日 星期一
微软不再维护 .NET Framework的更新 .NET Core将成微软未来的主打方向
dalbll.com| dalbll.com |11:22:38
我们在2014年11月推出了.NET Core 1.0。.NET Core 的目标是借鉴我们过去12年构建、发布和服务.NET Framework的经验去构建更好的产品
Using Implementation Factories To Register Dependencies In ASP.NET Core Dependency Injection
Kasun Kodagoda| www.c-sharpcorner.com |00:00:00
In this article, you will learn how to use implementation factories to register dependencies in ASP.NET Core dependency injection.