Commencement.Tests.Core.Helpers.NameAndType.NameAndType C# (CSharp) Method

NameAndType() public method

public NameAndType ( string name, string property, List parameterAttributes ) : System.Collections.Generic
name string
property string
parameterAttributes List
return System.Collections.Generic
        public NameAndType(string name, string property, List<AttributeList> parameterAttributes)
        {
            Name = name;
            Property = property;
            Attributes = null;
            ParameterAttributes = parameterAttributes;
        }

Same methods

NameAndType::NameAndType ( string name, string property, List attributes ) : System.Collections.Generic
NameAndType