自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

龙____

为独立游戏开发而奋斗

  • 博客(4)
  • 问答 (6)
  • 收藏
  • 关注

原创 C#类的升华

namespace testCS02 {     class test : Person, Itest //C#是不支持多重继承的,一个类只能同时继承一个父类,但是能够同时继承多个接口(转载)  *在继承时类必须写在接口前!     {         private string test1 = "test the private cin"; //**类中也可进行私有成员

2015-06-12 19:52:56 650

原创 C#类的理解

class people  // class中默认为  internal 类型 静态static不能被实例化     {         int age;         public static int Getnum()         {             return 5;         }         public int

2015-06-12 18:50:41 526

原创 C#引用类型,思考

//引用类型,内置类型:Object, String, Dynamic(不常用)              String u = "\\\u0066\n"; //输出为:“\f回车”              Console.WriteLine(u);             String at = @"C:\bilibili\java.cs"; //用@后“”中的\

2015-06-09 21:00:33 318

原创 C#初写第一篇

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace testCS {     class Program     {         static void Main(str

2015-06-08 17:31:54 425

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除