Spring.Util.AnotherCustomAttribute.AnotherCustomAttribute C# (CSharp) Method

AnotherCustomAttribute() public method

public AnotherCustomAttribute ( string name, int age, bool hasSwallowedExplosives ) : System
name string
age int
hasSwallowedExplosives bool
return System
        public AnotherCustomAttribute(string name, int age, bool hasSwallowedExplosives)
        {
            _name = name;
            _age = age;
            _hasSwallowedExplosives = hasSwallowedExplosives;
        }
AnotherCustomAttribute