dotnet 职业技术学院

博客

dotnet 职业技术学院

C#委托

lindexi 发布于 2020-03-05

关于什么是委托,委托如何使用,我在这里就不说了。 需要说的:

  1. 委托是函数指针链
  2. 委托的 BeginInvoke
  3. 委托如果出现异常,会如何

C#同步方法转异步

lindexi 发布于 2020-03-05

本文来告诉大家如何把同步的代码转换为异步

C#判断文件属于文本或二进制

lindexi 发布于 2020-03-05

其实标题说错了,所有的文件储存都是二进制,但我们想区别的是那些可以当做文本来读的,如 .txt,.cs,.c 的文件和一般的不是文字的文件。 我们有什么办法可区分文件是文本或二进制?

PowerShell 通过 WMI 获取系统服务

lindexi 发布于 2020-03-05

本文告诉大家如何通过 WMI 获取系统服务

PowerShell 通过 WMI 获取系统安装软件

lindexi 发布于 2020-03-05

本文告诉大家如何通过 WMI 获取系统安装的软件

PowerShell 通过 WMI 获取系统信息

lindexi 发布于 2020-03-05

本文告诉大家如何通过 WMI 使用 Win32_OperatingSystem 获取设备厂商

PowerShell 拿到最近的10个系统日志

lindexi 发布于 2020-03-05

我最近发现我的程序总是调用一些不清真的代码,于是在运行的时候就退出了,我想要拿到系统的日志知道我的程序是怎么退出的,我如何通过 PowerShell 拿到最近的10个系统日志。为什么需要拿到最新10个日志,因为在我程序退出的时候可能也有其他的几个程序也退出了,我的输入又很慢,所以我就需要这样写

PowerShell 使用 WMI 获取信息

lindexi 发布于 2020-03-05

在 PowerShell 可以很容易使用 WMI 拿到系统的信息,如果有关注我的网站,就会发现我写了很多通过 WMI 拿到系统的显卡,系统安装的软件等方法,本文告诉大家如果通过 PowerShell 拿到 WMI 类里面的属性

Latex 公式速查

lindexi 发布于 2020-03-05

本文记录了一些常用的数学公式对应的 Latex 字符,用于快速查找需要的字符。

HttpRepl 互操作的 RESTful HTTP 服务调试命令行工具

lindexi 发布于 2020-03-05

今天早上曽根セイラ告诉我一个好用的工具 HttpRepl 这是一个可以在命令行里面对 RESTful 的 HTTP 服务进行路由跳转和访问的命令行工具。可以使用 cd 这个命令和像文件跳转已经跳转到下一级的路由,也可以通过 dir 命令找到同一级的路由,同时支持集成到 VisualStudio 和 VisualStudio Code 里面

How to use code to exit the application in UWP

lindexi 发布于 2020-03-05

I will tell you how to exit the application in UWP by the code.

How to parse version range

lindexi 发布于 2020-03-05

Now we are making a solution that has to get the package reference. But the version of package reference is a range and the default version parser need input a version but not a version range. This post will tell you how to parse the version range string to reference version.

How to output the target message in dotnet build command line

lindexi 发布于 2020-03-05

How can I output my target message when I using dotnet build in command line.

How to fix nuget Unrecognized license type MIT when pack

lindexi 发布于 2020-03-05

When I packaging license within the nupkg, I will using License to replace licentUrl.

Developing Universal Windows Apps 开发UWA应用 问答

lindexi 发布于 2020-03-05

这是一篇在 2015 翻译的社区问答,内容已经过时