Boo.Lang.Compiler.TypeSystem.GenericConstructedType.BuildFullName C# (CSharp) Method

BuildFullName() protected method

protected BuildFullName ( ) : string
return string
        protected string BuildFullName()
        {
            string[] argumentNames = Array.ConvertAll<IType, string>(
                GenericArguments,
                delegate(IType t) { return t.FullName; });

            return string.Format("{0}[{1}]", _definition.FullName, string.Join(", ", argumentNames));
        }