VB.NET C#

  1. VB.NET console application
    1Module Module1
    2
    3    Sub Main()
    4
    5    End Sub

    6
    7End Module

    8

  2. C# console application
     1using System;
     2using System.Collections.Generic;
     3using System.Text;
     4
     5namespace ConsoleApplication2
     6{
     7    class Program
     8    {
     9        static void Main(string[] args)
    10        {
    11        }

    12    }

    13}
    
posted @ 2007-08-28 14:28  许晓光  阅读(218)  评论(0)    收藏  举报