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


            }

        }

    }

  • 相关阅读:
    python3 TypeError: a bytes-like object is required, not 'str'
    Centos 安装Python Scrapy PhantomJS
    Linux alias
    Vim vimrc配置
    Windows下 Python Selenium PhantomJS 抓取网页并截图
    Linux sort
    Linux RSync 搭建
    SSH隧道 访问内网机
    笔记《鸟哥的Linux私房菜》7 Linux档案与目录管理
    Tornado 错误 "Global name 'memoryview' is not defined"
  • 原文地址:https://www.cnblogs.com/netwenchao/p/1602721.html
Copyright © 2011-2022 走看看