Saturday, September 17, 2011

Write some text based on the specified data type

Module Module1

    Sub Main()

        Console.Write(True)
        Console.Write(25)
        Console.Write("Some text.")
        Console.WriteLine()
        Console.WriteLine()
        Console.WriteLine(True)
        Console.WriteLine(25)
        Console.WriteLine("Some text.")
    End Sub

End Module

No comments:

Post a Comment

Explain the different parts that constitute ASP.NET application.

Content, program logic and configuration file constitute an ASP.NET application. Content files Content files include static text, images ...