AttributeParameterInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / XamlBuildTask / Microsoft / Build / Tasks / Xaml / AttributeParameterInfo.cs / 1305376 / AttributeParameterInfo.cs

                            using System; 
using System.Collections.Generic;
using System.Linq;
using System.Xaml;
 
namespace Microsoft.Build.Tasks.Xaml
{ 
    internal class AttributeParameterInfo 
    {
        IList arrayContents; 

        public AttributeParameterInfo()
        {
            Name = String.Empty; 
            Value = String.Empty;
            IsArray = false; 
        } 

        public string Name { get; set; } 
        public string Value { get; set; }
        public Type Type { get; set; }
        public bool IsArray { get; set; }
        public IList ArrayContents 
        {
            get 
            { 
                if (arrayContents == null)
                { 
                    arrayContents = new List();
                }
                return arrayContents;
            } 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections.Generic;
using System.Linq;
using System.Xaml;
 
namespace Microsoft.Build.Tasks.Xaml
{ 
    internal class AttributeParameterInfo 
    {
        IList arrayContents; 

        public AttributeParameterInfo()
        {
            Name = String.Empty; 
            Value = String.Empty;
            IsArray = false; 
        } 

        public string Name { get; set; } 
        public string Value { get; set; }
        public Type Type { get; set; }
        public bool IsArray { get; set; }
        public IList ArrayContents 
        {
            get 
            { 
                if (arrayContents == null)
                { 
                    arrayContents = new List();
                }
                return arrayContents;
            } 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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