ICSharpCode.ILSpy.XmlDoc.XmlDocRenderer.GetCref C# (CSharp) Метод

GetCref() статический приватный Метод

static private GetCref ( string cref ) : string
cref string
Результат string
		static string GetCref(string cref)
		{
			if (cref == null || cref.Trim().Length==0) {
				return "";
			}
			if (cref.Length < 2) {
				return cref;
			}
			if (cref.Substring(1, 1) == ":") {
				return cref.Substring(2, cref.Length - 2);
			}
			return cref;
		}