asddasd

导航

#

[置顶] C#中的abstract 类和方法!!!

摘要: mark: https://www.cnblogs.com/zzy2740/archive/2005/09/20/240808.html C#中的abstract 类和方法!!! C#中的abstract类不能被实例化,他只提供其他类的继承的接口using System;abstract class 阅读全文

posted @ 2019-11-08 10:09 asddasd 阅读(3301) 评论(0) 推荐(0) 编辑

2021年6月29日 #

c# ComboBox绑定枚举

摘要: 原:https://www.cnblogs.com/lyh523329053/p/8418719.html 定义枚举 public enum UserLevel { Commmon = 0, Administrator, Developer } 方法一 private void Method1() 阅读全文

posted @ 2021-06-29 16:34 asddasd 阅读(138) 评论(0) 推荐(0) 编辑

2021年4月22日 #

C#与C++类型互转

摘要: 原文出处:https://www.jianshu.com/p/d3ac316104f8 一、C#调用DLL文件时参数对应表 Wtypes.h 中的非托管类型 非托管 C 语言类型 托管类名 说明 HANDLE void* System.IntPtr 32 位 BYTE unsigned char S 阅读全文

posted @ 2021-04-22 14:20 asddasd 阅读(783) 评论(0) 推荐(0) 编辑

DllImport

摘要: 1、原:https://blog.csdn.net/dandanwen/article/details/108258159?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.4242 阅读全文

posted @ 2021-04-22 13:53 asddasd 阅读(91) 评论(0) 推荐(0) 编辑

2021年2月24日 #

TCP三次握手四次挥手详解

摘要: 原文 https://www.cnblogs.com/zmlctt/p/3690998.html 相对于SOCKET开发者,TCP创建过程和链接折除过程是由TCP/IP协议栈自动创建的.因此开发者并不需要控制这个过程.但是对于理解TCP底层运作机制,相当有帮助. 而且对于有网络协议工程师之类笔试,几 阅读全文

posted @ 2021-02-24 16:28 asddasd 阅读(72) 评论(0) 推荐(0) 编辑

2021年1月6日 #

在C# 7.3中不可用。请使用8.0或更高的语言版本。

摘要: C# 语言版本控制:https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/configure-language-version#edit-the-project-file 在C# 7.3中不可用。请使用8.0或更高的语言版 阅读全文

posted @ 2021-01-06 12:26 asddasd 阅读(4879) 评论(0) 推荐(0) 编辑

2020年12月15日 #

WinForm的SolidBrush与wpf中的SolidColorBrush

摘要: winfrom: private readonly Brush bTrue = new SolidBrush(Color.FromArgb(255, 192, 255, 192)); wpf: private readonly Brush bTrue = new SolidColorBrush(Co 阅读全文

posted @ 2020-12-15 10:20 asddasd 阅读(216) 评论(0) 推荐(0) 编辑

2020年11月30日 #

c# 多维数组

摘要: https://www.yuque.com/lengyuezuixue/togedc/hgg3rz 阅读全文

posted @ 2020-11-30 19:39 asddasd 阅读(113) 评论(0) 推荐(0) 编辑

2020年11月25日 #

c# combobox 绑定枚举方式

摘要: https://www.cnblogs.com/northeastTycoon/p/5987734.html 建立一个类 : using System; using System.Collections.Generic; using System.Linq; using System.Text; u 阅读全文

posted @ 2020-11-25 17:01 asddasd 阅读(492) 评论(0) 推荐(0) 编辑

2020年11月5日 #

命令行运行airtest脚本注意事项

摘要: https://www.cnblogs.com/CincentHuang/p/11766026.html 1、 pip install airtest 和pip install pocoui 时,安装速度慢可以在后面加 可以在命令后面加参数 "-i https://pypi.tuna.tsinghu 阅读全文

posted @ 2020-11-05 09:45 asddasd 阅读(332) 评论(0) 推荐(0) 编辑

2020年11月4日 #

airtest 自动滑动屏幕

摘要: # -*- encoding=utf8 -*-__author__ = "Administrator" from airtest.core.api import * auto_setup(__file__) from poco.drivers.android.uiautomation import 阅读全文

posted @ 2020-11-04 13:00 asddasd 阅读(307) 评论(0) 推荐(0) 编辑