Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeSnippetExpression.cs / 1 / CodeSnippetExpression.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 CodeSnippetExpression : CodeExpression { private string value; ////// Represents a snippet expression. /// ////// public CodeSnippetExpression() { } ////// Initializes a new instance of ///. /// /// public CodeSnippetExpression(string value) { Value = value; } ////// Initializes a new instance of ///using the specified snippet /// expression. /// /// public string Value { get { return (value == null) ? string.Empty : value; } set { this.value = value; } } } }/// Gets or sets the snippet expression. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UnauthorizedWebPart.cs
- ServiceOperationParameter.cs
- TraceSwitch.cs
- Menu.cs
- PropertyEmitterBase.cs
- MultipartIdentifier.cs
- PreviewPageInfo.cs
- MexNamedPipeBindingCollectionElement.cs
- ToolboxItemFilterAttribute.cs
- BaseDataBoundControl.cs
- BevelBitmapEffect.cs
- DesignerToolboxInfo.cs
- TextWriterTraceListener.cs
- PeerName.cs
- PointConverter.cs
- SqlTriggerAttribute.cs
- BindingBase.cs
- SoapRpcServiceAttribute.cs
- ExpressionLink.cs
- HtmlElementCollection.cs
- ReadOnlyNameValueCollection.cs
- WindowsListViewItemStartMenu.cs
- RectAnimationBase.cs
- Column.cs
- Queue.cs
- StoreItemCollection.cs
- Boolean.cs
- AncillaryOps.cs
- TextHidden.cs
- NotifyInputEventArgs.cs
- DataGridViewComboBoxCell.cs
- TypeDescriptorContext.cs
- SingleAnimationBase.cs
- SourceInterpreter.cs
- ScrollViewer.cs
- WebControl.cs
- MediaPlayerState.cs
- TransformerTypeCollection.cs
- ReferenceSchema.cs
- GlobalAllocSafeHandle.cs
- ReadOnlyDictionary.cs
- DefaultAutoFieldGenerator.cs
- TextRangeEdit.cs
- OdbcTransaction.cs
- XmlSchemaSimpleType.cs
- ForceCopyBuildProvider.cs
- LinearGradientBrush.cs
- DbModificationClause.cs
- MessageQueuePermissionEntryCollection.cs
- InputQueueChannelAcceptor.cs
- UniqueIdentifierService.cs
- BulletChrome.cs
- ImageAnimator.cs
- UnsafeNativeMethods.cs
- PathFigure.cs
- ExpressionParser.cs
- WebCategoryAttribute.cs
- PersonalizationEntry.cs
- Rect3D.cs
- HotSpotCollectionEditor.cs
- WindowsStatusBar.cs
- SettingsSection.cs
- WebPartCancelEventArgs.cs
- DependencyObject.cs
- SynchronizedKeyedCollection.cs
- EncoderFallback.cs
- ReadOnlyMetadataCollection.cs
- SetterBase.cs
- Int32CAMarshaler.cs
- WeakReadOnlyCollection.cs
- Item.cs
- Paragraph.cs
- PopupControlService.cs
- HiddenFieldPageStatePersister.cs
- BatchParser.cs
- ExtensionQuery.cs
- PassportIdentity.cs
- VectorCollectionValueSerializer.cs
- XmlRawWriterWrapper.cs
- ReferenceConverter.cs
- TreeViewItemAutomationPeer.cs
- PersonalizationState.cs
- WebBrowserPermission.cs
- MatchingStyle.cs
- SortQueryOperator.cs
- XamlRtfConverter.cs
- DiscoveryClient.cs
- unitconverter.cs
- DesignerTransaction.cs
- StrokeNodeOperations2.cs
- securitymgrsite.cs
- Accessors.cs
- HtmlHead.cs
- HandlerElement.cs
- TextControl.cs
- InputReportEventArgs.cs
- TraceUtility.cs
- VoiceInfo.cs
- Int16.cs
- AssemblyBuilder.cs