我正在从事一个项目,我们将支持将事件导出到 Outlook 2007、Outlook 2010 和 iCal 的功能。我做了一些研究,发现 iCal(支持 iCal 程序)和 vCal(支持 Outlook)基本上是一回事,就我所见。看起来是 iCal is based on the old vCal format ,所以我想看看我可以在两个实现之间借用什么,以便更容易地生成 .ics 和 .vcs 文件。我也找到了 a C# implementation for a vCal file 和 a C# implementation for a iCal file 。
注意: 我知道 Outlook 也支持 iCal (*.ics) 格式,但是我们被要求支持除 *.ics 文件之外的 vCal (*.vcs) 文件的创建。
最佳答案
Google Answers question on the same topic 。
基本上 iCal 继承自早期的 vCal 实现。主要的变化是信息量和数据可以采用的格式。
关于c# - 使用 C# 将事件导出为 iCalendar 和 vCalendar 格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5461681/