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
- KeyNotFoundException.cs
- Stacktrace.cs
- DocobjHost.cs
- Misc.cs
- PolyLineSegment.cs
- DbConnectionFactory.cs
- SqlFunctionAttribute.cs
- ConvertEvent.cs
- XmlWellformedWriterHelpers.cs
- Permission.cs
- ResourceContainer.cs
- Block.cs
- BitVec.cs
- SelectionPattern.cs
- BaseDataList.cs
- PenContexts.cs
- UInt64.cs
- DataGridViewButtonColumn.cs
- MessageBox.cs
- TextSchema.cs
- Base64Encoding.cs
- BlurBitmapEffect.cs
- RectAnimation.cs
- HMACRIPEMD160.cs
- InternalRelationshipCollection.cs
- ValidatedControlConverter.cs
- Console.cs
- ObjectListItemCollection.cs
- ApplicationCommands.cs
- PointCollectionConverter.cs
- Material.cs
- ValidationEventArgs.cs
- UniformGrid.cs
- ActivityCodeDomReferenceService.cs
- CompositionAdorner.cs
- Symbol.cs
- CustomValidator.cs
- ServiceBehaviorElementCollection.cs
- NeutralResourcesLanguageAttribute.cs
- errorpatternmatcher.cs
- TileModeValidation.cs
- PlatformCulture.cs
- TransformCollection.cs
- DocumentGridPage.cs
- InfoCardSymmetricAlgorithm.cs
- HitTestResult.cs
- DecimalConstantAttribute.cs
- TextRangeBase.cs
- DiscreteKeyFrames.cs
- TextTreeUndoUnit.cs
- SystemDiagnosticsSection.cs
- BinaryParser.cs
- SiteOfOriginPart.cs
- ContentValidator.cs
- CompensationHandlingFilter.cs
- DataTableExtensions.cs
- LinkButton.cs
- SrgsRuleRef.cs
- XhtmlBasicCalendarAdapter.cs
- ObjectSet.cs
- shaperfactoryquerycacheentry.cs
- StreamGeometry.cs
- DataAdapter.cs
- ConstraintCollection.cs
- ContentValidator.cs
- SemanticAnalyzer.cs
- AspCompat.cs
- SessionIDManager.cs
- RowsCopiedEventArgs.cs
- KnownTypesProvider.cs
- ObservableDictionary.cs
- DataListItemCollection.cs
- BevelBitmapEffect.cs
- SafeNativeMethodsCLR.cs
- TextRunCache.cs
- RegexCaptureCollection.cs
- ResponseBodyWriter.cs
- CssTextWriter.cs
- arabicshape.cs
- SqlDataSourceConfigureSelectPanel.cs
- ArrayWithOffset.cs
- DynamicResourceExtensionConverter.cs
- SoapCodeExporter.cs
- ListItemCollection.cs
- ProjectionPathSegment.cs
- BigInt.cs
- RewritingPass.cs
- HtmlHead.cs
- TemplateParser.cs
- XmlSchemaAll.cs
- AnnotationMap.cs
- VisualBrush.cs
- UIPropertyMetadata.cs
- SqlDataSourceEnumerator.cs
- MaskedTextBoxDesignerActionList.cs
- DrawTreeNodeEventArgs.cs
- ToolStripSplitButton.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- Missing.cs
- TransformGroup.cs