//------------------------------------------------------------------------------ // // // Microsoft // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; /// /// /// Represents a /// snippet member of a class. /// /// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeSnippetTypeMember : CodeTypeMember { private string text; /// /// /// Initializes a new instance of . /// /// public CodeSnippetTypeMember() { } /// /// /// Initializes a new instance of . /// /// public CodeSnippetTypeMember(string text) { Text = text; } /// /// /// Gets or sets the code for the class member. /// /// public string Text { get { return (text == null) ? string.Empty : text; } set { text = value; } } } }