This documentation is archived and is not being maintained.
CodeMethodReturnStatement Class
Visual Studio 2008
Represents a return value statement.
Assembly: System (in System.dll)
CodeMethodReturnStatement can be used to represent a return value statement. The Expression property specifies the value to return.
The following example demonstrates use of a CodeMethodReturnStatement to return a value from a method.
' Defines a method that returns a string passed to it. Dim method1 As New CodeMemberMethod() method1.Name = "ReturnString" method1.ReturnType = New CodeTypeReference("System.String") method1.Parameters.Add(New CodeParameterDeclarationExpression("System.String", "text")) method1.Statements.Add(New CodeMethodReturnStatement(New CodeArgumentReferenceExpression("text"))) ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Private Function ReturnString(ByVal [text] As String) As String ' Return [Text] ' End Function
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeMethodReturnStatement
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeMethodReturnStatement
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: