Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- DictionarySectionHandler.cs
- RtfFormatStack.cs
- Line.cs
- AppSecurityManager.cs
- SplashScreen.cs
- TextRunProperties.cs
- XslNumber.cs
- EncodingNLS.cs
- AuthenticationModulesSection.cs
- InvalidCastException.cs
- WebBrowser.cs
- TextTreeFixupNode.cs
- ThreadInterruptedException.cs
- SubpageParaClient.cs
- PersonalizationDictionary.cs
- MembershipSection.cs
- XPathNodePointer.cs
- OutOfProcStateClientManager.cs
- EpmSourceTree.cs
- CalendarModeChangedEventArgs.cs
- BaseInfoTable.cs
- ManagementClass.cs
- SoundPlayerAction.cs
- FormViewInsertEventArgs.cs
- KeyValuePair.cs
- UnsafeNativeMethodsTablet.cs
- ReadOnlyAttribute.cs
- EnvironmentPermission.cs
- Timer.cs
- MatrixKeyFrameCollection.cs
- LoginName.cs
- ParamArrayAttribute.cs
- NCryptNative.cs
- x509utils.cs
- PropertyRecord.cs
- HScrollProperties.cs
- CustomCredentialPolicy.cs
- WmfPlaceableFileHeader.cs
- MessagePropertyFilter.cs
- QuotedPrintableStream.cs
- RegexInterpreter.cs
- smtpconnection.cs
- CustomTrackingQuery.cs
- OracleRowUpdatedEventArgs.cs
- AuthStoreRoleProvider.cs
- TextServicesDisplayAttributePropertyRanges.cs
- EvidenceTypeDescriptor.cs
- OleStrCAMarshaler.cs
- CodeGeneratorOptions.cs
- GlyphingCache.cs
- UntypedNullExpression.cs
- Utility.cs
- Int32Rect.cs
- BigInt.cs
- MD5.cs
- GridViewEditEventArgs.cs
- SafeNativeMethods.cs
- BindToObject.cs
- PropertyDescriptorGridEntry.cs
- PipelineModuleStepContainer.cs
- TypeDescriptionProviderAttribute.cs
- Highlights.cs
- KeyValueSerializer.cs
- QilXmlReader.cs
- SQLInt32Storage.cs
- LineServicesRun.cs
- Message.cs
- TraceUtility.cs
- CodeDirectoryCompiler.cs
- CodeCatchClause.cs
- ComboBoxHelper.cs
- ParallelQuery.cs
- ISSmlParser.cs
- PageBuildProvider.cs
- DesignerSerializerAttribute.cs
- DataGridViewRowHeaderCell.cs
- TextRangeAdaptor.cs
- KeyGestureConverter.cs
- ErrorProvider.cs
- GregorianCalendar.cs
- SqlFactory.cs
- ButtonChrome.cs
- IisTraceWebEventProvider.cs
- ImmutableObjectAttribute.cs
- PLINQETWProvider.cs
- WindowShowOrOpenTracker.cs
- ListChangedEventArgs.cs
- DeadCharTextComposition.cs
- ConvertTextFrag.cs
- TextSpan.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- ToolStripDropDownMenu.cs
- MdiWindowListStrip.cs
- SoapServerProtocol.cs
- FontStretch.cs
- ISAPIRuntime.cs
- HttpCachePolicyBase.cs
- TrackBarRenderer.cs
- NavigationFailedEventArgs.cs
- ConnectionPoint.cs