Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeAssignStatement.cs / 1 / 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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeAssignStatement : CodeStatement { private CodeExpression left; private CodeExpression right; ////// Represents a simple assignment statement. /// ////// public CodeAssignStatement() { } ////// Initializes a new instance of ///. /// /// public CodeAssignStatement(CodeExpression left, CodeExpression right) { Left = left; Right = right; } ////// Initializes a new instance of ///that represents the /// specified assignment values. /// /// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the variable to be assigned to. /// ////// public CodeExpression Right { get { return right; } set { right = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the value to assign. /// ///// 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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeAssignStatement : CodeStatement { private CodeExpression left; private CodeExpression right; ////// Represents a simple assignment statement. /// ////// public CodeAssignStatement() { } ////// Initializes a new instance of ///. /// /// public CodeAssignStatement(CodeExpression left, CodeExpression right) { Left = left; Right = right; } ////// Initializes a new instance of ///that represents the /// specified assignment values. /// /// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the variable to be assigned to. /// ////// public CodeExpression Right { get { return right; } set { right = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the value to assign. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigurationSection.cs
- TextureBrush.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- XmlWellformedWriterHelpers.cs
- ColorMatrix.cs
- AggregationMinMaxHelpers.cs
- CopyOnWriteList.cs
- SqlConnectionManager.cs
- _Rfc2616CacheValidators.cs
- ResolveDuplexAsyncResult.cs
- SharedPerformanceCounter.cs
- SqlDuplicator.cs
- ElementHostPropertyMap.cs
- ComboBox.cs
- FlagsAttribute.cs
- SignalGate.cs
- FixedSOMContainer.cs
- Query.cs
- EdmComplexPropertyAttribute.cs
- ErrorHandler.cs
- EnumMemberAttribute.cs
- OleDbConnection.cs
- HttpStreamMessage.cs
- X509KeyIdentifierClauseType.cs
- PolyLineSegment.cs
- Lazy.cs
- RepeatButtonAutomationPeer.cs
- CodePageUtils.cs
- Persist.cs
- AttachedAnnotationChangedEventArgs.cs
- ISAPIRuntime.cs
- HttpInputStream.cs
- AuthenticateEventArgs.cs
- FormsAuthenticationCredentials.cs
- ConfigXmlWhitespace.cs
- MatrixIndependentAnimationStorage.cs
- DateTimeConverter.cs
- WmpBitmapDecoder.cs
- SerializationBinder.cs
- XmlSchemaDocumentation.cs
- MatrixTransform3D.cs
- ReadWriteObjectLock.cs
- OpenFileDialog.cs
- Renderer.cs
- DataRelationPropertyDescriptor.cs
- TemplatePagerField.cs
- AppSettingsReader.cs
- ArrayList.cs
- ProxyBuilder.cs
- SafeCoTaskMem.cs
- IndentTextWriter.cs
- VisualTreeHelper.cs
- CompiledRegexRunner.cs
- CheckedListBox.cs
- ContentPresenter.cs
- ResourceIDHelper.cs
- GPStream.cs
- GeneratedContractType.cs
- XamlSerializerUtil.cs
- AuditLevel.cs
- ZipIOLocalFileHeader.cs
- HttpContextBase.cs
- ListBindingHelper.cs
- Journal.cs
- ArrayElementGridEntry.cs
- dtdvalidator.cs
- PerformanceCountersBase.cs
- SessionEndingEventArgs.cs
- GroupItemAutomationPeer.cs
- OdbcFactory.cs
- HtmlTableRow.cs
- AutomationPropertyInfo.cs
- HeaderedItemsControl.cs
- SystemIPv4InterfaceProperties.cs
- InfoCardRSACryptoProvider.cs
- PathData.cs
- EventProviderClassic.cs
- LocalValueEnumerator.cs
- RepeatInfo.cs
- StringResourceManager.cs
- Int16AnimationBase.cs
- XmlSchemaValidationException.cs
- XmlChoiceIdentifierAttribute.cs
- RelationshipManager.cs
- ResourcePool.cs
- TypeDescriptionProvider.cs
- AbstractExpressions.cs
- XPathCompiler.cs
- CodeArrayCreateExpression.cs
- ToolBarTray.cs
- FontStretch.cs
- EntityAdapter.cs
- GridViewEditEventArgs.cs
- ComponentSerializationService.cs
- StringCollectionEditor.cs
- OracleException.cs
- MachineKey.cs
- NamedObject.cs
- InternalsVisibleToAttribute.cs
- ColumnHeader.cs