c\#우호 시간 구현 코드 분석


const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;
if (delta < 0)
{
  return "not yet";
}
if (delta < 1 * MINUTE)
{
  return ts.Seconds == 1 ? "1 " : ts.Seconds + " ";
}
if (delta < 2 * MINUTE)
{
  return "1 ";
}
if (delta < 45 * MINUTE)
{
  return ts.Minutes + " ";
}
if (delta < 90 * MINUTE)
{
  return "1 ";
}
if (delta < 24 * HOUR)
{
  return ts.Hours + " ";
}
if (delta < 48 * HOUR)
{
  return " ";
}
if (delta < 30 * DAY)
{
  return ts.Days + " ";
}
if (delta < 12 * MONTH)
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? " " : months + " ";
}
else
{
  int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
  return years <= 1 ? " " : years + " ";
}

좋은 웹페이지 즐겨찾기