
C# programming
文章平均质量分 81
waterathena
be a fashional lady
write clean code
展开
-
单链表(C#)实现
前几天的Homework。 using System;public interface list ...{ bool IsEmpty(); object CreatList(int n); void Insert(int index,object item); bool Delete(object item);原创 2007-10-09 13:43:00 · 586 阅读 · 0 评论 -
二叉排序树的实现(C#)
搞了一天终于把这个homework搞定了。开心 ,下个星期有新的任务了。如果所有工作在星期五都可以告于一个段落,对所有职场人来说应该是一件很舒心的事吧。周末可以专注自己的其他事情,不用背着包袱过日子。Wish happy weekend!曾经在网上搜到很多关于一些数据结构的代码,对过往的我的学业带来很大帮助,对现在工作中的我也很有启发。所以现在也把代码共享出来。希望也可以he原创 2007-10-09 13:31:00 · 1292 阅读 · 1 评论 -
C#基础知识(一)
这是昨天下班前总结的一天的学习心得。帖出来和大家一起、分享学习的快乐。C#的一些术语.net管理代码的执行——启动代码、给它赋予相应的权限、分配内存以及存储数据,释放内存和资源。.net还使用一个非常复杂的类库——即.net基类,以便在windows上执行大量的任务。.net运行时CLR:公共语言运行时。它管理实际代码。受管制的代码:在.net环境中运行的任何代码都成原创 2007-10-09 13:45:00 · 829 阅读 · 0 评论 -
Predicate Generic Delegate
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.Namespace: SystemAssembly: mscorlib (in mscorlib.dll)version Information:.NE原创 2007-11-08 16:13:00 · 583 阅读 · 0 评论 -
Polymorphism 多态
using System;using System.Collections.Generic;public class MyClass{ public static void Main() { CommissionedEmployee [] salespeople= { new CommissionedEmployee原创 2007-11-08 14:22:00 · 517 阅读 · 0 评论 -
Reflection somethings
Today saw this code snippet below:using System;using System.Reflection;namespace Donis.CSharpBook{ public class Starter{ public static void Main(string [] argv){ Assembly exec原创 2007-11-08 15:43:00 · 693 阅读 · 0 评论 -
Array.SyncRoot Property
Syntax: SyncRoot This property returns a synchronization object for the current array. Arrays are not inherently thread-safe. Synchronize原创 2007-11-08 16:38:00 · 623 阅读 · 0 评论