Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAssignStatement.cs / 1305376 / CodeAssignStatement.cs
//------------------------------------------------------------------------------
//
//
// [....]
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
///
///
/// Represents a simple assignment statement.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeAssignStatement : CodeStatement {
private CodeExpression left;
private CodeExpression right;
///
///
/// Initializes a new instance of .
///
///
public CodeAssignStatement() {
}
///
///
/// Initializes a new instance of that represents the
/// specified assignment values.
///
///
public CodeAssignStatement(CodeExpression left, CodeExpression right) {
Left = left;
Right = right;
}
///
///
/// Gets or sets
/// the variable to be assigned to.
///
///
public CodeExpression Left {
get {
return left;
}
set {
left = value;
}
}
///
///
/// Gets or sets
/// the value to assign.
///
///
public CodeExpression Right {
get {
return right;
}
set {
right = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
//
// [....]
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
///
///
/// Represents a simple assignment statement.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeAssignStatement : CodeStatement {
private CodeExpression left;
private CodeExpression right;
///
///
/// Initializes a new instance of .
///
///
public CodeAssignStatement() {
}
///
///
/// Initializes a new instance of that represents the
/// specified assignment values.
///
///
public CodeAssignStatement(CodeExpression left, CodeExpression right) {
Left = left;
Right = right;
}
///
///
/// Gets or sets
/// the variable to be assigned to.
///
///
public CodeExpression Left {
get {
return left;
}
set {
left = value;
}
}
///
///
/// Gets or sets
/// the value to assign.
///
///
public CodeExpression Right {
get {
return right;
}
set {
right = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewUpdateEventArgs.cs
- SourceItem.cs
- Pair.cs
- ProviderMetadata.cs
- HealthMonitoringSection.cs
- SqlDataSourceEnumerator.cs
- CodeMethodInvokeExpression.cs
- SQLByte.cs
- XPathSelectionIterator.cs
- GatewayIPAddressInformationCollection.cs
- MailDefinitionBodyFileNameEditor.cs
- DataGridViewImageColumn.cs
- EventHandlerList.cs
- StringAnimationUsingKeyFrames.cs
- XmlChoiceIdentifierAttribute.cs
- XmlSchemaGroupRef.cs
- RegionInfo.cs
- ClientTarget.cs
- LinearKeyFrames.cs
- BamlLocalizabilityResolver.cs
- XmlSchemaImporter.cs
- ToolStripStatusLabel.cs
- DirectionalLight.cs
- sortedlist.cs
- MessagePropertyAttribute.cs
- DataList.cs
- ObjectFullSpanRewriter.cs
- CallSiteOps.cs
- DynamicActivityTypeDescriptor.cs
- CultureInfoConverter.cs
- BasicViewGenerator.cs
- CopyAttributesAction.cs
- WebServiceTypeData.cs
- AddInProcess.cs
- ResXResourceReader.cs
- ValueOfAction.cs
- UIPermission.cs
- BrowserCapabilitiesFactory35.cs
- HttpSessionStateBase.cs
- WindowsUpDown.cs
- ADMembershipUser.cs
- UriGenerator.cs
- X509ThumbprintKeyIdentifierClause.cs
- OAVariantLib.cs
- WorkflowRuntime.cs
- KeySplineConverter.cs
- RegexCompilationInfo.cs
- DeclarativeCatalogPart.cs
- InternalMappingException.cs
- elementinformation.cs
- LocationUpdates.cs
- XamlToRtfWriter.cs
- DataSourceNameHandler.cs
- Transform3DGroup.cs
- ExecutionContext.cs
- AccessKeyManager.cs
- CollaborationHelperFunctions.cs
- Reference.cs
- Contracts.cs
- Geometry3D.cs
- AppDomain.cs
- ScriptControlManager.cs
- EventNotify.cs
- HostedElements.cs
- CookielessHelper.cs
- CompositeActivityCodeGenerator.cs
- TimelineGroup.cs
- ExpressionConverter.cs
- Wildcard.cs
- PeerContact.cs
- HtmlTableRowCollection.cs
- SignatureDescription.cs
- ValueCollectionParameterReader.cs
- IsolatedStorageFileStream.cs
- URLIdentityPermission.cs
- HttpGetServerProtocol.cs
- PrincipalPermission.cs
- MDIControlStrip.cs
- _RequestCacheProtocol.cs
- GridViewColumnHeaderAutomationPeer.cs
- ParameterCollection.cs
- RuntimeConfigurationRecord.cs
- EventListener.cs
- DateTimeConverter.cs
- CompilationUtil.cs
- DesignTableCollection.cs
- NameValuePair.cs
- XmlTextReaderImpl.cs
- AuthorizationContext.cs
- DataControlButton.cs
- ClassicBorderDecorator.cs
- URLIdentityPermission.cs
- ConversionContext.cs
- TypeViewSchema.cs
- Rotation3DAnimation.cs
- Attachment.cs
- Set.cs
- ListViewInsertionMark.cs
- ColorAnimation.cs
- TextLineResult.cs