CodeSnippetTypeMember.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeSnippetTypeMember.cs / 1 / CodeSnippetTypeMember.cs

                            //------------------------------------------------------------------------------ 
// 
//     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;
            }
        } 
    }
} 
 


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK