RaiseEvent Sms_income(Me, e) ReDim phonebook(9999) Delegate Sub sms_1(ByVal sender As Object, ByVal fe As sms_income_EventArgs) Public Event Sms_income As sms_1
上面这些VB语句 在C#中如何写呢 谢谢啊ReDim 是vb特有的东西,C#没有与之对应的关键字
那么在C#中我们应该如何定义呢 是不是直接就string[]=new string[9999] string[] s1 = new string[10]; s1 = new string[100]; 后面的一个就是把s1数组的长度重新变为100,不过原来里面的内容都没有了
我想把word另存为xml之后,用vb读取这个xml的内容,请问如何实现? dim f as integer dim b() as byte dim s as string dim L as long f=freefile() open "abc.xml" for binary access read as #f ......