上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
实现的一个DEMO程序,见代码: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Console Read More
posted @ 2020-09-03 18:02 LcVong Views(256) Comments(0) Diggs(0) Edit
虚方法: 即为基类中定义的允许在派生类中重写的方法,使用virtual关键字定义。如: public virtual void EatFood() { Console.WriteLine("Animal吃东西"); } 注意:虚方法也可以被直接调用。如: Animal a = new Animal( Read More
posted @ 2020-09-03 16:21 LcVong Views(391) Comments(0) Diggs(0) Edit
1、重载(overload): 在同一个作用域(一般指一个类)的两个或多个方法函数名相同,参数列表不同的方法叫做重载,它们有三个特点(俗称两必须一可以): 方法名必须相同 参数列表必须不相同 返回值类型可以不相同 例如: public void Sleep() { Console.WriteLine Read More
posted @ 2020-09-03 16:10 LcVong Views(992) Comments(0) Diggs(0) Edit
C# 可空类型(Nullable) C# 提供了一个特殊的数据类型,nullable 类型(可空类型),可空类型可以表示其基础值类型正常范围内的值,再加上一个 null 值。 例如,Nullable< Int32 >,读作"可空的 Int32",可以被赋值为 -2,147,483,648 到 2,1 Read More
posted @ 2020-09-03 08:53 LcVong Views(190) Comments(0) Diggs(0) Edit
这是学习的第一个Halcon视觉案例:霍夫变换在图像中找曲线 由于之前了解到的视觉是Ni Vision,对于Halcon也只是了解,... Read More
posted @ 2020-08-28 19:03 LcVong Views(450) Comments(0) Diggs(0) Edit
/// <summary> /// 普通转16进制(带汉字) /// </summary> /// <param name="data"></param> public static string Hexdata(string data) { byte[] b = Encoding.GetEncod Read More
posted @ 2020-08-27 09:34 LcVong Views(565) Comments(0) Diggs(0) Edit
阿里云安装centerOS系统,安装宝塔面板如下截图操作: 里面用到很多linux指令,详情访问:https://www.runoo... Read More
posted @ 2020-08-22 16:22 LcVong Views(37) Comments(0) Diggs(0) Edit
前面介绍了添加自定义控件属性,这里是事件,当自定义控件的属性UserOK为true时,触发Userloginsuccess事件,代码如下: //定义委托 public delegate void BtnClickHandle(object sender, EventArgs e); //定义事件 p Read More
posted @ 2020-08-19 14:53 LcVong Views(313) Comments(0) Diggs(0) Edit
C#自定义控件增加自定义事件 前面介绍了添加自定义控件属性,这里是事件,当自定义控件的属性UserOK为true时,触发Userlo... Read More
posted @ 2020-08-19 14:53 LcVong Views(47) Comments(0) Diggs(0) Edit
新建W窗体控件库 自定义控件属性 下面是更改控件背景颜色的属性 private Color UserBlackcolor = Color.White; [Description("修改此值可更改控件背景颜色"),Category("自定义属性")] public Color UserBlackcol Read More
posted @ 2020-08-19 10:36 LcVong Views(690) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页