3

我是 ASNA Visual RPG 的新手。我花了几个小时搜索如何在 ASNA Visual RPG 9.x 中打印字符串。但是找不到如何打印一个简单的“hello world”字符串的运气。

有人可以告诉我如何在控制台中打印“hello world”吗?

VB中的例子(希望你能把它翻译成ASNA Visual RPG)

Sub Main ()
    Dim text As String
    text = "Hello World"
    Console.WriteLine(text)
    Console.Read()
End Sub

谢谢

4

1 回答 1

1

Sorry for all the trouble guys.. I just found out the answer. I am using Visual Studio 2008 for ASNA Visual RPG. To print "Hello World", all we need to do is to type:

System.Console.WriteLine("Hello World")
于 2011-05-27T01:58:09.470 回答