Unity.DataContract.PackageInfo.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("{0} {1} ({2}) v{3} for Unity v{4}", new object[] { this.organisation, this.name, this.type, (this.version == null) ? null : this.version.text, (this.unityVersion == null) ? null : this.basePath });
        }