Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
値として NULL (Visual Basic の Nothing) を使用して、ULParameter オブジェクトを初期化します。
Public Sub New()
public ULParameter()
次のコードでは、値が 3 である ULParameter パラメーターが作成され、cmd という ULCommand が追加されます。
' Visual Basic Dim p As ULParameter = New ULParameter p.Value = 3 cmd.Parameters.Add( p )
対応する C# 言語のコードを次に示します。
// C# ULParameter p = new ULParameter(); p.Value = 3; cmd.Parameters.Add( p );