C#으로 시간 전 계산
18899 단어 programmingbeginnersdotnetcsharp
다음은 사람이 읽을 수 있는 상대 시간을 제공하는 System.DateTime에 대한 작은 확장 방법입니다. 예를 들면 다음과 같습니다.
스위치 패턴을 사용하여 DateTime 구조에 대해 이 확장 방법을 확인하십시오.
public static string AsTimeAgo(this DateTime dateTime)
{
TimeSpan timeSpan = DateTime.Now.Subtract(dateTime);
return timeSpan.TotalSeconds switch
{
<= 60 => $"{timeSpan.Seconds} seconds ago",
_ => timeSpan.TotalMinutes switch
{
<= 1 => "about a minute ago",
< 60 => $"about {timeSpan.Minutes} minutes ago",
_ => timeSpan.TotalHours switch
{
<= 1 => "about an hour ago",
< 24 => $"about {timeSpan.Hours} hours ago",
_ => timeSpan.TotalDays switch
{
<= 1 => "yesterday",
<= 30 => $"about {timeSpan.Days} days ago",
<= 60 => "about a month ago",
< 365 => $"about {timeSpan.Days / 30} months ago",
<= 365 * 2 => "about a year ago",
_ => $"about {timeSpan.Days / 365} years ago"
}
}
}
};
}
확장 방법 AsTimeAgo
보너스! 같은 문제에 대한 다른 솔루션
웹 서핑 - 나는 너무 늙었습니다 - 같은 문제에 대한 두 가지 해결책을 더 찾았습니다.
어떤 것이 가장 마음에 드는지 댓글 섹션에 알려주세요.
첫 번째 솔루션
const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;
var ts = new TimeSpan(DateTime.UtcNow.Ticks - yourDate.Ticks);
double delta = Math.Abs(ts.TotalSeconds);
if (delta < 1 * MINUTE)
return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
if (delta < 2 * MINUTE)
return "a minute ago";
if (delta < 45 * MINUTE)
return ts.Minutes + " minutes ago";
if (delta < 90 * MINUTE)
return "an hour ago";
if (delta < 24 * HOUR)
return ts.Hours + " hours ago";
if (delta < 48 * HOUR)
return "yesterday";
if (delta < 30 * DAY)
return ts.Days + " days ago";
if (delta < 12 * MONTH)
{
int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
return months <= 1 ? "one month ago" : months + " months ago";
}
else
{
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";
}
발견 날짜https://stackoverflow.com/questions/11/calculate-relative-time-in-c-sharp
두 번째 솔루션
public static string TimeAgo(this DateTime dateTime)
{
string result = string.Empty;
var timeSpan = DateTime.Now.Subtract(dateTime);
if (timeSpan <= TimeSpan.FromSeconds(60))
{
result = string.Format("{0} seconds ago", timeSpan.Seconds);
}
else if (timeSpan <= TimeSpan.FromMinutes(60))
{
result = timeSpan.Minutes > 1 ?
String.Format("about {0} minutes ago", timeSpan.Minutes) :
"about a minute ago";
}
else if (timeSpan <= TimeSpan.FromHours(24))
{
result = timeSpan.Hours > 1 ?
String.Format("about {0} hours ago", timeSpan.Hours) :
"about an hour ago";
}
else if (timeSpan <= TimeSpan.FromDays(30))
{
result = timeSpan.Days > 1 ?
String.Format("about {0} days ago", timeSpan.Days) :
"yesterday";
}
else if (timeSpan <= TimeSpan.FromDays(365))
{
result = timeSpan.Days > 30 ?
String.Format("about {0} months ago", timeSpan.Days / 30) :
"about a month ago";
}
else
{
result = timeSpan.Days > 365 ?
String.Format("about {0} years ago", timeSpan.Days / 365) :
"about a year ago";
}
return result;
}
발견 날짜https://dotnetthoughts.net/time-ago-function-for-c/
❤️ 이 기사가 마음에 드십니까?
친구에게 전달하여 알려주세요.
질문이나 개선 사항을 댓글로 남겨주세요.
Reference
이 문제에 관하여(C#으로 시간 전 계산), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rmaurodev/calculate-time-ago-with-c-29jp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)