Spring.Util.AnotherCustomAttribute.AnotherCustomAttribute C# (CSharp) Méthode

AnotherCustomAttribute() public méthode

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