使用异步的方法中,不能直接使用 Thread.Sleep(1000); 要使用 await Task.Delay(1000); [......] 继续阅读
在需要分页的位置,输入 <div STYLE="page-break-after: always;"></div> 在导出PDF时即可分页。 [......] 继续阅读
在需要分页的位置,输入 <div STYLE="page-break-after: always;"></div> 在导出PDF时即可分页 [......] 继续阅读
.NET Core Using Sonarqube Issues Simple Way to Run Sonarqube docker run -d --name sonarqube -p 9000:9000 sonarqube The default username and password are admim After logging in, create a project and a token, and directly follow the prompt to select C#.NET. .NET…
.NET Core 使用 Sonarqube 问题 运行 Sonarqube 的简单方法 docker run -d --name sonarqube -p 9000:9000 sonarqube 默认账号密码是 admim 登陆后创建项目和 token,直接按照提示选择 C#.NET。 .NET Core 项目 先运行一下命令 dotnet tool install --global dotnet-sonarscanner .NET FX 项目 到这里下载最新版本的 工具 https://github.com/S…
Exploring char and string in C# [TOC] 1. System.Char Character char is an alias for System.Char. System.Char occupies two bytes, which is 16 binary bits. System.Char is used to represent and store a single Unicode character. The range of representation for Sys…
探究 C# 中的 char 、 string(一) [TOC] 1. System.Char 字符 char 是 System.Char 的别名。 System.Char 占两个字节,16个二进制位。 System.Char 用来表示、存储一个 Unicode 字符。 System.Char 的表示范围是 U+0000 到U+FFFF,char 默认值是 \0,即 U+0000。 Unicode 的表示,通常以 U+____形式表示,即 U 和 一组16进制的数字组成。 char 有四种赋值方法 char a = …
无法更新系统和软件 获取更新列表 apt list --upgradable 手动更新应用和解决依赖 sudo aptitude purge {software_name} 如果依赖无法解决, 依然使用上面的命令,选择 n [......] 继续阅读
无法更新系统和软件 获取更新列表 apt list --upgradable 手动更新应用和解决依赖 sudo aptitude purge {软件名称} 如果依赖无法解决, 依然使用上面的命令,选择 n [......] 继续阅读
Path.GetDirectoryName(typeof(OneClass).Assembly.Location) OneClass is a type within this DLL. Directory.GetCurrentDirectory() does not necessarily retrieve the location of the current DLL. [......] 继续阅读
Path.GetDirectoryName(typeof(OneClass).Assembly.Location) OneClass 是这个 dll 内的一个类型。 Directory.GetCurrentDirectory() 获取的不一定是当前 dll 的位置 [......] 继续阅读
st, sk, sp When stressed, st, sk, and sp undergo sound changes; At the beginning of words, st, sk, and sp change their sound, but at the end of words, they do not change their sound; Sound changes: skate, skill, square, stand, sport, speak, study No sound chan…
Support for .NET Core on Loongson and Thoughts on Embedded Development with .NET Core [TOC] 1. Regrettable Attempts A few days ago, I came across Zhang's public post titled 《Asp.Net Can Finally Run on Loongson Servers: Jexus Successfully Adapts to Domestic Ser…
.NET Core 对龙芯的支持情况和对 .NET Core 开发嵌入式的思考 [TOC] 一,遗憾的尝试 前些天看到了张队公众推送的《Asp.Net终于可以在龙芯服务器上运行啦:Jexus成功完成对国产系列CPU的适配》,联想到上一周与朋友在龙芯捣鼓 .NET Core,就想写一下关于 .NET Core 在龙芯下的资料。 Jexus Web Server 能够在龙芯服务器上跑,但是 ASP.NET 呢?.NET Core 呢?安装什么版本的 Mono ?Jexus 作者的文章表达有点模糊呀~ 上一周与朋友在龙芯…
For context classes, there should be an overloaded base(options) constructor. public partial class DatabaseContext : DbContext { public DatabaseContext() { } public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options)[......…
对于上下文类,要有一个 base(options) 构造函数重载。 public partial class DatabaseContext : DbContext { public DatabaseContext() { } public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options) { } } 使用时 var opt[......]继续阅读
First, switch to the root user and then execute apt-get install software-properties-common Then the following prompts will appear: Reading package lists... Done Analyzing the dependency tree Reading state information... Done The following packages will be inst…
首先要切换到 root 用户,然后执行 apt-get install software-properties-common 然后会出现以下提示 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 将会同时安装下列软件: libappstream4 packagekit packagekit-tools python3-pycurl python3-software-properties 建议安装: appstream libcurl4-gnutls-dev python-py…