C#
文章平均质量分 52
yaomyz
这个作者很懒,什么都没留下…
展开
-
C# 装箱与拆箱
装箱值类型转为引用类型(或者说对像)。int i=5;object oi=i;注意:i与oi是相互独立的,i为值类型储存在栈中,oi为引用类型储存在堆中。拆箱引用类型转为值类型。int i=5;object oi=i;int j=(int)oi;原创 2017-07-16 21:59:46 · 151 阅读 · 0 评论 -
C#的类型转换
使用implicit和explicit关键字可进行隐式和显式转换,具体格式如下:public implicit/explicit operator targetType(sourceType name)示例代码:using System;using System.Collections.Generic;using System.Linq;using System.Tex原创 2017-07-17 10:52:30 · 176 阅读 · 0 评论 -
C#中const和readonly的区别
点击连接跳至转载页转载 2017-07-17 11:59:41 · 209 阅读 · 0 评论 -
C# List的删除
为方便示范先建一个student类用以操作class student { protected string _name; public student(string name) { _name = name; } public string getname() {原创 2017-07-23 16:48:01 · 18905 阅读 · 1 评论 -
C# 委托
C#委托的关键字为delegate,其用法与C++中的函数指针类似(更详细的说明可参考这里)先定义一个类以供操作class student { protected string _name; public student(string name) { _name = name; }原创 2017-07-23 17:34:21 · 183 阅读 · 0 评论