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();


            }

        }

    }

  • 相关阅读:
    ASPNET下的路径辅助类
    分析函数计算起始,结束日期.
    Debugging SQL Server 2005 Stored Procedures in Visual Studio
    Storing Binary Files Directly in the Database Using ASP.NET 2.0
    Fw:Managing View State in ASP.NET 4 Using the New ViewStateMode Property
    Using ASP.NET 3.5's ListView and DataPager Controls: Displaying Data with the ListView
    Passing Information Between Content and Master Pages .
    转:Querying a Hierarchical ParentChild Structure in LINQ
    续上篇:比较彻底的清除"代理木马下载器"的方法
    面向过程和面向对象--从C到C#
  • 原文地址:https://www.cnblogs.com/netwenchao/p/1602721.html
Copyright © 2011-2022 走看看