/// <summary> /// <see cref="IInfo.ToInfo(IInfo)"/> /// This implementation returns the short info of the IInfo if not null, the string "null" if null /// </summary> public string ToInfo(IInfo info) { return(info == null ? "null" : info.ToInfo()); }