PHP:
if(($a = $toto) == 'test') echo $a;
VB.net
Dim a as string = toto
if a.equals("test") then console.writeline(a)
「1行」のコード設計が好きなので、vb.netでそれを行うことは可能ですか?
PHP:
if(($a = $toto) == 'test') echo $a;
VB.net
Dim a as string = toto
if a.equals("test") then console.writeline(a)
「1行」のコード設計が好きなので、vb.netでそれを行うことは可能ですか?
代わりに、このようにマルチライナーになります
Dim a As String = "test"
Dim b As String = a
if (b.equals("test")) then console.writeline(b)
または、Alexander が提案したように、このような 1 つのライナーを使用できます (実際にはコンパイラの 1 つのライナーではない可能性が最も高い)。
Dim a As String = "test", b As String = a
if (b.equals("test")) then console.writeline(b)
以下を使用できます......
私はそれをしていませんが、それがあなたを助けることを願っています..
Option Explicit Off
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If ((ss = "test") = "test") Then MessageBox.Show("hi")
End Sub
End Class