c#
楼边斜月为明
学习记录,出错之处,还望指出
展开
-
C# virtual
The virtual keyword is used to modify a method, property, indexer, or event declaration and allow for it to be overridden in a derived class. For example, this method can be overridden by any class tha转载 2016-08-17 22:28:02 · 346 阅读 · 0 评论 -
C# attribute(特性)
Attributes provide a powerful method of associating metadata, or declarative information, with code (assemblies, types, methods, properties, and so forth). After an attribute is associated with a progr转载 2016-08-17 22:49:24 · 572 阅读 · 0 评论 -
c#学习笔记1
c#与java区别: 1.数组区别(普通数组,交叉数组,多重数组参数传递) 2.存在结构体 3.继承(语法上) 4.指针等原创 2016-08-11 12:01:28 · 319 阅读 · 0 评论 -
C# BitArray
using System;using System.Collections;public class SamplesBitArray{ public static void Main() { // Creates and initializes several BitArrays. BitArray myBA1 = new BitArray(5);原创 2016-08-11 12:03:36 · 1371 阅读 · 0 评论