C#视频 - Interface 接口
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespac
阅读全文
posted @
2018-05-31 14:36
zzunstu
阅读(251)
推荐(0)
C#视频 - 虚方法, virtual,abstract方法
摘要:Note: virtual 和 abstract 方法不能声明为 private。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System
阅读全文
posted @
2018-05-31 10:59
zzunstu
阅读(145)
推荐(0)
C#视频 - 委托(Delegate)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Collections; 6 7 namespace ConsoleApplica
阅读全文
posted @
2018-05-29 21:01
zzunstu
阅读(148)
推荐(0)
C#视频 - 索引器 Index
摘要:索引器相当于带参数的属性,索引器没有名字,而是使用this关键字。索引器的参数不一定是整型,可以是任何类型,并且索引器可以重载。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using Syst
阅读全文
posted @
2018-05-29 10:51
zzunstu
阅读(175)
推荐(0)
C#视频 - 转换-Conversion
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Collections; 6 7 namespace ConsoleApplica
阅读全文
posted @
2018-05-28 20:59
zzunstu
阅读(173)
推荐(0)