csharp GetComments.cs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp GetComments.cs相关的知识,希望对你有一定的参考价值。
//For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
// initialize DocFormat
DocFormat docFormat = new DocFormat(Common.MapSourceFilePath(filePath));
//get comments...
DocComment[] comments = docFormat.ExtractComments();
//get commnets by author...
//DocComment[] comments = docFormat.ExtractComments("USMAN");
// display comments
foreach (DocComment comment in comments)
{
Console.WriteLine("Author: ", comment.Author);
Console.WriteLine("Created on Date: ", comment.CreatedDate);
Console.WriteLine("Initials: ", comment.Initials);
Console.WriteLine("\n");
}
以上是关于csharp GetComments.cs的主要内容,如果未能解决你的问题,请参考以下文章