本文整理匯總了VB.NET中System.CodeDom.CodeArgumentReferenceExpression類的典型用法代碼示例。如果您正苦於以下問題:VB.NET CodeArgumentReferenceExpression類的具體用法?VB.NET CodeArgumentReferenceExpression怎麽用?VB.NET CodeArgumentReferenceExpression使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了CodeArgumentReferenceExpression類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: WriteString
' Declare a method that accepts a string parameter named text.
Dim cmm As New CodeMemberMethod()
cmm.Parameters.Add(New CodeParameterDeclarationExpression("String", "text"))
cmm.Name = "WriteString"
cmm.ReturnType = New CodeTypeReference("System.Void")
' Create a method invoke statement to output the string passed to the method.
Dim cmie As New CodeMethodInvokeExpression(New CodeTypeReferenceExpression("Console"), "WriteLine", New CodeArgumentReferenceExpression("text"))
' Add the method invoke expression to the method's statements collection.
cmm.Statements.Add(cmie)
' A Visual Basic code generator produces the following source code for the preceeding example code:
' Private Sub WriteString(ByVal [text] As [String])
' Console.WriteLine([text])
' End Sub