Skip to content

Instantly share code, notes, and snippets.

@peymanmajidi
Created November 29, 2020 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peymanmajidi/0ad639ef4f8f6e6a8c6f79ef229438e2 to your computer and use it in GitHub Desktop.
Save peymanmajidi/0ad639ef4f8f6e6a8c6f79ef229438e2 to your computer and use it in GitHub Desktop.
DateTime To Shamsi(Persian/Iran) Format
public static string ToShamsi(this DateTime value)
{
PersianCalendar pc=new PersianCalendar();
return pc.GetYear(value) + "/" + pc.GetMonth(value).ToString("00") + "/" +
pc.GetDayOfMonth(value).ToString("00");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment