CodeMethodReturnStatement Class
.NET Framework 3.0
Represents a return value statement.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] [ComVisibleAttribute(true)] public class CodeMethodReturnStatement : CodeStatement
/** @attribute SerializableAttribute() */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ /** @attribute ComVisibleAttribute(true) */ public class CodeMethodReturnStatement extends CodeStatement
SerializableAttribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) ComVisibleAttribute(true) public class CodeMethodReturnStatement extends CodeStatement
Not applicable.
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. CodeMemberMethod method1 = 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 C# code generator produces the following source code for the preceeding example code: // private string ReturnString(string text) // { // return text; // }
// Defines a method that returns a string passed to it.
CodeMemberMethod method1 = new CodeMemberMethod();
method1.set_Name("ReturnString");
method1.set_ReturnType(new CodeTypeReference("System.String"));
method1.get_Parameters().Add(new CodeParameterDeclarationExpression(
"System.String", "text"));
method1.get_Statements().Add(new CodeMethodReturnStatement(new
CodeArgumentReferenceExpression("text")));
// A VJ# code generator produces the following source code for
// the preceeding example code:
// private String ReturnString(String text)
// {
// return text;
// } //ReturnString
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeMethodReturnStatement
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeMethodReturnStatement
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: