zoukankan      html  css  js  c++  java
  • Just For Fun

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Collections;

    namespace TestFuns
    {
        
    class Program
        
    {

            
    Functions

            
    DelegateDemo

            
    static void Main(string[] args)
            
    {
                
    for (int i = 0; i < 10; i++)
                    Console.WriteLine(numlist(i));

                InsertRandomArr();
                ShowMsgInfo sm 
    = new ShowMsgInfo();
                sm.ShowMsg 
    = new ShowMsgInfo.msgOut(ShowHTML);
                Console.WriteLine(sm.ShowMsg(
    "Test"));
                sm.ShowMsg 
    = new ShowMsgInfo.msgOut(ShowTXT);
                Console.WriteLine(sm.ShowMsg(
    "Test2"));
                Console.Read();


            }

        }

    }

  • 相关阅读:
    IT名词备忘录——汇编
    逆转链表的实现
    编写安全的代码的一些技巧
    extern c 谈
    回调函数
    职场必备八个黄金句型
    CString类的用法介绍和自己动手写的CString类
    61条面向对象设计的经验原则(转贴)
    sprintf的用法
    VisualStudioVS2010统计代码行数
  • 原文地址:https://www.cnblogs.com/netwenchao/p/1602721.html
Copyright © 2011-2022 走看看