文章持续补充中 特性并不是集中在某一命名空间中,而是不同的特性在不同的命名空间下,特性是某一命名空间下提供的语法糖。 有哪些命名空间提供特性:   命名空间   描述 Microsoft.Build.Framework 包含定义任务和记录器与 MSBuild 引擎的交互方式的类型[......] 继续阅读

2019年12月15日 0条评论 2886点热度 0人点赞 痴者工良 阅读全文

The article is continuously being updated. Features are not concentrated in a specific namespace, but rather different features exist under different[......] 继续阅读

2019年12月15日 0条评论 88点热度 0人点赞 痴者工良 阅读全文

目录 一,网络基础 二,Socket 对象 三,Bind() 绑定与 Connect() 连接 四,Listen() 监听请求连接 和 Accept() 接收连接请求 五,Receive() 与 Send() 六,释放资源 七,IPAddress 和 IPEndPoint 2019-2-1[......] 继续阅读

2019年12月15日 1条评论 2856点热度 0人点赞 痴者工良 阅读全文

Table of Contents 1. Network Basics 2. Socket Object 3. Bind() Binding and Connect() Connection 4. Listen() Listening for Connection Requests and Acce[......] 继续阅读

2019年12月15日 1条评论 48点热度 0人点赞 痴者工良 阅读全文

各位相加 给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。 示例: 输入: 38 输出: 2 解释: 各位相加的过程为:3 + 8 = 11, 1 + 1 = 2。 由于 2 是一位数,所以返回 2。 进阶:你可以不使用循环或者递归,且在 O(1) 时间复杂度内[......] 继续阅读

2019年12月15日 0条评论 2800点热度 1人点赞 痴者工良 阅读全文

Sum of Digits Given a non-negative integer num, repeatedly add the digits of the number until the result is a single digit. Example: Input: 38 Output[......]继续阅读

2019年12月15日 0条评论 2804点热度 1人点赞 痴者工良 阅读全文

Problem 1 Original link https://leetcode-cn.com/problems/two-sum/ Given an integer array nums and a target value target, please fi[......] 继续阅读

2019年12月15日 1条评论 3933点热度 0人点赞 痴者工良 阅读全文

题目一 原题链接 https://leetcode-cn.com/problems/two-sum/ 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每[......] 继续阅读

2019年12月15日 1条评论 3913点热度 0人点赞 痴者工良 阅读全文

 Bubble Sort It is a method for sorting numbers in a linear array from largest to smallest or from smallest to largest. Taking sorting from small[......] 继续阅读

2019年12月15日 2条评论 64点热度 0人点赞 痴者工良 阅读全文

 冒泡排序法 是数组等线性排列的数字从大到小或从小到大排序。 以从小到大排序为例。 数据 11, 35, 39, 30, 7, 36, 22, 13, 1, 38, 26, 18, 12, 5, 45, 32, 6, 21, 42, 23 使用 数组 int [] array 存储数字。 过程 ([......] 继续阅读

2019年12月15日 2条评论 3435点热度 0人点赞 痴者工良 阅读全文

SQLite is convenient to use, simple and compact. The author will not elaborate further here; those interested can refer to the following blog. https:/[......] 继续阅读

2019年12月15日 1条评论 68点热度 0人点赞 痴者工良 阅读全文

SQLIte 操作方便,简单小巧,这里笔者就不再过多介绍,感兴趣可以到以下博文 https://blog.csdn.net/qq_31930499/article/details/80420246  文章介绍创建ASP.NET Core 程序,创建模型、上下文,生成数据库,对数据库增删查改[......] 继续阅读

2019年12月15日 1条评论 2998点热度 0人点赞 痴者工良 阅读全文

In ASP.NET Core, files can be added to a static directory for direct download. However, this method may not be secure or flexible enough. We can add a[......] 继续阅读

2019年12月15日 0条评论 70点热度 1人点赞 痴者工良 阅读全文

ASP.NET Core 中,可以在静态目录添加文件,直接访问就可以下载。但是这种方法可能不安全,也不够灵活。 我们可以在 Controller 控制器中 添加 一个 Action,通过此Action,即可访问服务器的任何文件。 Action 格式     public FileResult D[......]继续阅读

2019年12月15日 0条评论 2780点热度 1人点赞 痴者工良 阅读全文

The startup process of ASP.NET Core applications is as follows Table of Contents  Startup Class Configure() Method Middleware Using Middleware [......] 继续阅读

2019年12月15日 2条评论 2910点热度 0人点赞 痴者工良 阅读全文

ASP.NET Core 程序启动过程如下 目录  Startup 类 Configure() 方法 中间件 使用中间件 Configure 方法 的参数 IApplicationBuilder Extension Methods(拓展方法)--微软提供的中间件 1, Startup[......] 继续阅读

2019年12月15日 2条评论 2876点热度 0人点赞 痴者工良 阅读全文

The author did not study ASP.NET, but went directly to learn ASP.NET Core. After finishing the basics of ASP.NET Core MVC, I began to learn about the[......] 继续阅读

2019年12月15日 0条评论 3108点热度 0人点赞 痴者工良 阅读全文

笔者没有学 ASP.NET,直接学 ASP.NET Core ,学完 ASP.NET Core MVC 基础后,开始学习 ASP.NET Core 的运行原理。发现应用程序有一个非常主要的 “传导体” HttpContext 。 赶忙写一下笔记先。 目录 &ldqu[......] 继续阅读

2019年12月15日 0条评论 3080点热度 0人点赞 痴者工良 阅读全文

Table of Contents: System.ComponentModel Attribute Namespaces and Common Classes System.ComponentModel.DataAnnotations ComponentModel - Classes Compon[......] 继续阅读

2019年12月15日 1条评论 2997点热度 0人点赞 痴者工良 阅读全文

目录: System.ComponentModel 特性命名空间与常用类 System.ComponentModel.DataAnnotations ComponentModel - Classes 类 ComponentModel - Structs 结构体 ComponentModel[......] 继续阅读

2019年12月15日 1条评论 2973点热度 0人点赞 痴者工良 阅读全文