
C#
文章平均质量分 76
xuzhilong2009
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#中 ref 和 out 参数的区别
【传智播客.Net培训—C#编程基础】49refout参数原创 2014-08-20 23:05:00 · 435 阅读 · 0 评论 -
C# 属性
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace attribute { class Program { static void Main(string[] args) { Perso原创 2014-08-22 00:03:35 · 367 阅读 · 0 评论 -
C# 构造函数及其重载
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace gouzao { class Program { static void Main(string[] args) {原创 2014-08-24 23:20:05 · 461 阅读 · 0 评论 -
C# 继承
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace inherit { class Program { static void Main(string[] args) { Chinese原创 2014-08-25 00:30:02 · 454 阅读 · 0 评论 -
C#中的Static关键字
/*全部变量--static变量 * 不用new一个对象,就能直接用类名调用的方法:static方法 * (static方法其实就是普通函数) * 在static方法中,可以调用其它static成员,但不能调用非static成员 * 在非static方法中,可以调用static成员(因为static是全局的) * 静态类:不能new的类,不能生成对象实例,一般用来实现函数库 Helper原创 2014-08-26 23:40:10 · 479 阅读 · 0 评论 -
聊天机器人改写版
/*初学C# 改写的聊天机器人之华山论剑,写着玩儿的,还很粗劣,有待完善*/原创 2014-08-15 00:26:03 · 844 阅读 · 0 评论