I am using ZP to scrape financial data from on YCharts.
The date value returned is like "1560902400000" in json.
I searched online and found that people could use Panda in Python to convert this serial number into a "YYYY-MM-DD" format
df["date"] = pd.to_datetime(df["date"] / 1000, unit="s")
Is there anything similar in C# to convert this number to a "YYYY-MM-DD"?
Thank you.
The date value returned is like "1560902400000" in json.
I searched online and found that people could use Panda in Python to convert this serial number into a "YYYY-MM-DD" format
df["date"] = pd.to_datetime(df["date"] / 1000, unit="s")
Is there anything similar in C# to convert this number to a "YYYY-MM-DD"?
Thank you.