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
- DataControlPagerLinkButton.cs
- diagnosticsswitches.cs
- PlatformCulture.cs
- sqlstateclientmanager.cs
- OperationValidationEventArgs.cs
- ApplicationCommands.cs
- SerializationHelper.cs
- ImageBrush.cs
- DecoderReplacementFallback.cs
- PackagePart.cs
- ImmutableObjectAttribute.cs
- HeaderedItemsControl.cs
- CloudCollection.cs
- ByteStorage.cs
- SystemBrushes.cs
- PropertyStore.cs
- RuleInfoComparer.cs
- SqlDataSourceEnumerator.cs
- AppDomainShutdownMonitor.cs
- UpdateProgress.cs
- BackgroundFormatInfo.cs
- GridLength.cs
- ProxyGenerator.cs
- RegistryPermission.cs
- RunInstallerAttribute.cs
- StoreAnnotationsMap.cs
- BrowserCapabilitiesCompiler.cs
- TextFormatter.cs
- BrowserCapabilitiesFactory.cs
- ThaiBuddhistCalendar.cs
- Delay.cs
- Control.cs
- DataAdapter.cs
- XmlSchemaObjectCollection.cs
- FlowNode.cs
- SafeLocalMemHandle.cs
- ResourceIDHelper.cs
- Page.cs
- StreamGeometry.cs
- ParseChildrenAsPropertiesAttribute.cs
- EntityDataSourceSelectingEventArgs.cs
- ContextMarshalException.cs
- CustomAttributeBuilder.cs
- MailHeaderInfo.cs
- ContextMenuAutomationPeer.cs
- WsdlBuildProvider.cs
- DataGridViewUtilities.cs
- ChangeInterceptorAttribute.cs
- DocComment.cs
- Matrix3DConverter.cs
- LowerCaseStringConverter.cs
- CompositionAdorner.cs
- PeerApplication.cs
- SoapWriter.cs
- BridgeDataRecord.cs
- SqlParameterCollection.cs
- ComplexTypeEmitter.cs
- XPathCompileException.cs
- ReadOnlyDictionary.cs
- FlowLayoutSettings.cs
- ServiceNotStartedException.cs
- TagMapCollection.cs
- DataBoundControlHelper.cs
- DispatcherFrame.cs
- XPathAxisIterator.cs
- XmlSchemaAttributeGroup.cs
- BulletedListDesigner.cs
- Matrix3DValueSerializer.cs
- ValueTypeFixupInfo.cs
- IISUnsafeMethods.cs
- autovalidator.cs
- CodeCompileUnit.cs
- DataGrid.cs
- Rules.cs
- PolicyValidationException.cs
- ProcessHostConfigUtils.cs
- HtmlInputHidden.cs
- ServiceDefaults.cs
- String.cs
- ProxyWebPartConnectionCollection.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- FileClassifier.cs
- ObjectDataSourceFilteringEventArgs.cs
- RootDesignerSerializerAttribute.cs
- CollectionViewGroupRoot.cs
- GeneralTransform.cs
- CompiledWorkflowDefinitionContext.cs
- IntegerValidator.cs
- PrintingPermission.cs
- HierarchicalDataSourceConverter.cs
- FileDialogCustomPlace.cs
- mactripleDES.cs
- ClientTargetCollection.cs
- SerTrace.cs
- XhtmlTextWriter.cs
- ThousandthOfEmRealPoints.cs
- ImmutablePropertyDescriptorGridEntry.cs
- BindingsCollection.cs
- TreeNodeCollection.cs
- DataSetUtil.cs