AjErl.Tests.Classes.Person.GetName C# (CSharp) 메소드

GetName() 공개 메소드

public GetName ( ) : string
리턴 string
        public string GetName()
        {
            if (this.NameEvent != null)
                this.NameEvent.Invoke(this.FirstName);

            return this.LastName + ", " + this.FirstName;
        }
Person