Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeSnippetStatement.cs / 1 / CodeSnippetStatement.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 CodeSnippetStatement : CodeStatement { private string value; ////// Represents a snippet statement. /// ////// public CodeSnippetStatement() { } ////// Initializes a new instance of ///. /// /// public CodeSnippetStatement(string value) { Value = value; } ////// Initializes a new instance of ///using the specified snippet /// of code. /// /// public string Value { get { return (value == null) ? string.Empty : value; } set { this.value = value; } } } }/// Gets or sets the snippet statement. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BindingsCollection.cs
- MethodToken.cs
- CodeTypeOfExpression.cs
- CodeGroup.cs
- QilInvokeEarlyBound.cs
- Int16KeyFrameCollection.cs
- DragAssistanceManager.cs
- ResourceBinder.cs
- ToolStripEditorManager.cs
- ClientFormsIdentity.cs
- StreamUpgradeAcceptor.cs
- WinCategoryAttribute.cs
- MatrixConverter.cs
- ContentTextAutomationPeer.cs
- DataGridViewComboBoxCell.cs
- RuntimeConfig.cs
- ActivityMarkupSerializer.cs
- BindingCompleteEventArgs.cs
- RegisterInfo.cs
- Native.cs
- TraceSource.cs
- WindowsTitleBar.cs
- FontUnit.cs
- X509WindowsSecurityToken.cs
- SchemaImporterExtensionElement.cs
- CompareValidator.cs
- TrustManagerMoreInformation.cs
- BulletChrome.cs
- XPathQueryGenerator.cs
- ListViewTableCell.cs
- BindingOperations.cs
- Enum.cs
- SafeUserTokenHandle.cs
- WindowsGraphicsWrapper.cs
- RegisteredHiddenField.cs
- JobInputBins.cs
- BigInt.cs
- Int32RectValueSerializer.cs
- DbMetaDataColumnNames.cs
- LoginCancelEventArgs.cs
- DiscoveryMessageSequence11.cs
- CommandValueSerializer.cs
- AutomationElement.cs
- BasePropertyDescriptor.cs
- CornerRadiusConverter.cs
- FontFamily.cs
- ScrollContentPresenter.cs
- PropertyKey.cs
- PolyLineSegment.cs
- QilDataSource.cs
- EntityDescriptor.cs
- CacheOutputQuery.cs
- InstanceView.cs
- QueryStringParameter.cs
- EntityClientCacheKey.cs
- TypeExtensions.cs
- WindowsIdentity.cs
- HostExecutionContextManager.cs
- IntSumAggregationOperator.cs
- AccessorTable.cs
- XamlPointCollectionSerializer.cs
- XmlEncoding.cs
- ExpressionList.cs
- BuildResult.cs
- URI.cs
- RegionIterator.cs
- DataObjectFieldAttribute.cs
- XmlElementAttributes.cs
- BindingSource.cs
- Brush.cs
- HttpNamespaceReservationInstallComponent.cs
- SubclassTypeValidatorAttribute.cs
- DesignerDataStoredProcedure.cs
- PagedDataSource.cs
- ConnectionPoolManager.cs
- Message.cs
- UnaryExpression.cs
- BaseComponentEditor.cs
- Mapping.cs
- DesignTimeParseData.cs
- HuffModule.cs
- HttpBufferlessInputStream.cs
- ReaderWriterLock.cs
- HtmlInputSubmit.cs
- RequestSecurityTokenForRemoteTokenFactory.cs
- IsolatedStoragePermission.cs
- DllHostedComPlusServiceHost.cs
- PrinterUnitConvert.cs
- DetailsView.cs
- PermissionAttributes.cs
- TemplateBindingExpression.cs
- DoubleAnimationBase.cs
- BCryptHashAlgorithm.cs
- Parallel.cs
- SqlXml.cs
- GradientStop.cs
- SecondaryViewProvider.cs
- EndOfStreamException.cs
- SqlDataSourceFilteringEventArgs.cs
- RowBinding.cs