本文介绍了什么是VB.net中的:=的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好吧,主题告诉了一切...
我找不到VB.NET中的:=功能...

这里是一个示例...

SwitchDesktop(hDesktop:= p_lngHwnd)


有人可以告诉我吗?

谢谢:)

Well, subject tells everything ...
I can''t find what := does in VB.NET ...

Here''s one example ...

SwitchDesktop(hDesktop:=p_lngHwnd)


Can anyone tell me ?

thanks :)

推荐答案

<br />Sub ShowMsg(ByVal a as String, ByVal b as String, ByVal c as String)<br />  MsgBox(a & b & c)<br />End Sub<br /><br />Sub Main()<br />  ''Notice how a, b, and c are out of order.<br />  ShowMsg(c := "!", b := " World", a := "Hello")<br />End Sub<br />



这篇关于什么是VB.net中的:=的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 23:04
查看更多