摘要:动态添加新行 //方法一: int index = this.dataGridView1.Rows.Add(); this.dataGridView1.Rows[index].Cells[0].Value = "第1列单元格"; this.dataGridView1.Rows[index].Cell
阅读全文
10 2020 档案
摘要:一、C#6中新增的功能 get 只读属性 简洁的语法来创建不可变类型,仅有get访问器: public string FirstName { get; } public string LastName { get; } 当然很多时候,我们使用的是私有化来设置set。 然后通过构造函数来赋值: pub
阅读全文
摘要:##一、背景 假如给定一个字符串表达式"-12 * ( - 2.2 + 7.7 ) - 44 * 2",让你计算结果,熟悉JavaScript的都知道有个Eval函数可以直接进行计算,而C#中却没有这个函数,下面提供三种实现方式 ##二、代码 public class Class1 { #regio
阅读全文