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
- ActivityScheduledQuery.cs
- Glyph.cs
- XmlSerializerSection.cs
- SqlMethodCallConverter.cs
- DecimalConverter.cs
- XmlArrayItemAttributes.cs
- TransformValueSerializer.cs
- TextRenderer.cs
- WebPartActionVerb.cs
- ListChangedEventArgs.cs
- SpeechDetectedEventArgs.cs
- RequestCachingSection.cs
- RequestSecurityTokenResponse.cs
- objectquery_tresulttype.cs
- XmlSchemaSimpleContent.cs
- RoutedEventValueSerializer.cs
- _ProxyRegBlob.cs
- ConfigurationHelpers.cs
- COM2ColorConverter.cs
- fixedPageContentExtractor.cs
- followingquery.cs
- _OverlappedAsyncResult.cs
- _KerberosClient.cs
- Debug.cs
- ContainerParagraph.cs
- LoaderAllocator.cs
- VersionedStreamOwner.cs
- QuestionEventArgs.cs
- NativeMethods.cs
- COM2ColorConverter.cs
- SingleStorage.cs
- COM2IPerPropertyBrowsingHandler.cs
- DesignerCategoryAttribute.cs
- relpropertyhelper.cs
- DataTemplateKey.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- Clipboard.cs
- HostedNamedPipeTransportManager.cs
- DiagnosticStrings.cs
- ThemeableAttribute.cs
- SHA512.cs
- TableCellCollection.cs
- DataObject.cs
- AxImporter.cs
- OleCmdHelper.cs
- XmlBaseReader.cs
- PrePostDescendentsWalker.cs
- codemethodreferenceexpression.cs
- LinkUtilities.cs
- BatchServiceHost.cs
- PropertyPushdownHelper.cs
- Int32EqualityComparer.cs
- AddInEnvironment.cs
- HttpSessionStateWrapper.cs
- DateTimePicker.cs
- SerializableAttribute.cs
- TextEditorSelection.cs
- MarginsConverter.cs
- GridViewColumnCollection.cs
- CompositeScriptReferenceEventArgs.cs
- XmlExpressionDumper.cs
- DtdParser.cs
- VectorAnimation.cs
- XmlQueryContext.cs
- StatusBarAutomationPeer.cs
- Polyline.cs
- IntranetCredentialPolicy.cs
- NeutralResourcesLanguageAttribute.cs
- XmlNode.cs
- XmlSchemaAttributeGroup.cs
- ImageSource.cs
- StaticTextPointer.cs
- ProfileSection.cs
- DataPagerFieldCommandEventArgs.cs
- XPathDocumentNavigator.cs
- ListViewUpdatedEventArgs.cs
- EventProviderWriter.cs
- RowType.cs
- StorageAssociationSetMapping.cs
- ShaderEffect.cs
- EmptyCollection.cs
- ObjectManager.cs
- ResourceCollectionInfo.cs
- DbDataSourceEnumerator.cs
- CatalogZone.cs
- TimeZone.cs
- SymDocumentType.cs
- CodeBinaryOperatorExpression.cs
- IdleTimeoutMonitor.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- TableChangeProcessor.cs
- VSWCFServiceContractGenerator.cs
- WorkflowItemsPresenter.cs
- ApplicationException.cs
- ColumnMapTranslator.cs
- EtwTrackingBehaviorElement.cs
- GridEntry.cs
- TraceHandlerErrorFormatter.cs
- AxDesigner.cs
- SqlCacheDependency.cs