01 2022 档案
摘要:int j = 0; char[] chars = txtLoadRmin.Text.ToCharArray(); for (int i = 0; i < txtLoadRmin.Text.Length; i++) { if (chars[i] == '.') { j++; } } if (j >
阅读全文
摘要:C#编程窗体控件命名的规范及要求 Data Control 类 型 前 缀 示 例 AccessDataSource ads adsPubs DataList dlst dlstTitles DetailView dvw dvwTitles FormView fvw fvwFonts GridVie
阅读全文
摘要:一、C#封装成DLL 1、在VS中创建项目选择类库,命名 myDll 2、建立好项目后自动生成的代码如下: 代码修改如下,添加自己要封装的C#代码,注意修饰符必须为public using System; using System.Collections.Generic; using System.
阅读全文