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


            }

        }

    }

  • 相关阅读:
    如何设置mysql数据库为只读
    华为S5300系列、S5700系列交换机无法修改密码问题分析
    一个form表单有两个按钮,分别提交到不同的页面
    在cmd/bat脚本中获取当前脚本文件所在目录
    以一个学生宿舍区为例,解析华为交换机AAA的配置
    mysql创建远程用户并授权
    锐捷交换机中的password与secret的区别
    机器学习基础及案例
    python所有基础
    win10找不到Hyper-V的解决方法
  • 原文地址:https://www.cnblogs.com/netwenchao/p/1602721.html
Copyright © 2011-2022 走看看