TESVSnip.Domain.Model.Record.GetLink C# (CSharp) 메소드

GetLink() 공개 메소드

Generate hyperlink for a given identifier of form [plugin]@[type]:[recid]
public GetLink ( ) : string
리턴 string
        public string GetLink()
        {
            var p = this.GetPlugin();

            // uint pidx = value >> 24;
            if (p != null)
            {
                return string.Format("{0}@{1}:{2:X8}", p.Name, Name, this.FormID);
            }

            return string.Format("{0}:{1:X8}", Name, this.FormID);
        }