GetName() private method

private GetName ( ) : String
return String
コード例 #1
0
        internal string GetFullName()
        {
            PackageScope package = this.GetPackage();

            if (package != null)
            {
                return(package.GetName() + "." + this.name);
            }
            if (this.owner.enclosingScope is ClassScope)
            {
                return(((ClassScope)this.owner.enclosingScope).GetFullName() + "." + this.name);
            }
            return(this.name);
        }