CodeTypeParameter.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 / CodeTypeParameter.cs / 1 / CodeTypeParameter.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; 

    [ 
        ClassInterface(ClassInterfaceType.AutoDispatch), 
        ComVisible(true),
        Serializable, 
    ]
    public class CodeTypeParameter : CodeObject {
        private string name;
        private CodeAttributeDeclarationCollection customAttributes; 
        private CodeTypeReferenceCollection constraints;
        private bool hasConstructorConstraint; 
 
        public CodeTypeParameter() {
        } 

        public CodeTypeParameter(string name) {
            this.name = name;
        } 

        public string Name { 
            get { 
                return (name == null) ? string.Empty : name;
            } 
            set {
                name = value;
            }
        } 

        public CodeTypeReferenceCollection Constraints { 
            get { 
                if (constraints == null) {
                    constraints = new CodeTypeReferenceCollection(); 
                }
                return constraints;
            }
        } 

        public CodeAttributeDeclarationCollection CustomAttributes { 
            get { 
                if (customAttributes == null) {
                    customAttributes = new CodeAttributeDeclarationCollection(); 
                }
                return customAttributes;
            }
        } 

        public bool HasConstructorConstraint { 
            get { 
                return hasConstructorConstraint;
            } 
            set {
                hasConstructorConstraint = 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