Spring.Util.AnotherCustomAttribute.AnotherCustomAttribute C# (CSharp) Метод

AnotherCustomAttribute() публичный Метод

public AnotherCustomAttribute ( string name, int age, bool hasSwallowedExplosives ) : System
name string
age int
hasSwallowedExplosives bool
Результат System
        public AnotherCustomAttribute(string name, int age, bool hasSwallowedExplosives)
        {
            _name = name;
            _age = age;
            _hasSwallowedExplosives = hasSwallowedExplosives;
        }
AnotherCustomAttribute