摘要:
C#语法回顾 ref的作用: 修改现有变量的值 注意事项: 使用ref之前,该变量必须初始化 ...... namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { int a = 1; in 阅读全文
摘要:
CRUD接口实例 NvrServer 新建实体类 // NvrServer.cs using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Com 阅读全文