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