将VBScript代码段转换为C#

时间:2013-03-12 13:23:16

标签: c# vbscript converter

我查看了代码,但我根本没有理解知道哪些函数正在做什么以及如何与C#我的主要编码语言相关。

Set mSkype = WScript.CreateObject("Skype4COM.Skype", "Skype_")

ContactName=InputBox ("Enter the contact's Skype User Name" & CHR(13) & "Note that this must be the User Name and not the Display Name", "User Name:")

If ContactName = "" Then
    WScript.Quit
Else
    If mSkype.User(ContactName).FullName="" then
        WScript.Echo ("The name " & ContactName & " is not in your Contact List")
        WScript.Quit
    End If  
End If


PictureFileName=InputBox ("Enter the path and name of the Picture" & CHR(13) & "The file extension must be .jpg", "Save Picture as:")

If PictureFileName="" Then
    WScript.Quit
End If


cmdStr = "GET USER" & " " & ContactName & " " & "AVATAR 1" & " " & PictureFileName
mSkype.SendCommand mSkype.Command(0, cmdStr)

哦,我确实已经导入skype4com并使用该api,这不是转换的问题。

1 个答案:

答案 0 :(得分:0)

InputBox是一个显示提示输入的窗口。它在VB.NET中可用,您实际上可以通过添加对Microsoft.VisualBasic的引用在C#中使用它。请参阅here

VB中也没有WScript,研究如何在Skype开发者论坛中使用Skype插件可能会很好。 Here是关于如何在C#中使用Skype DLL的链接。