SectionManagerGetComments Method |
Namespace: VIZCore3D.NET.Manager
public List<SectionCommetItem> GetComments( int id, int subid )
// VIZCore3D.NET Control private VIZCore3D.NET.VIZCore3DControl vizcore3d; private void Example() { int ReviewID = 1; List<VIZCore3D.NET.Data.SectionCommetItem> items = vizcore3d.Section.GetComments(ReviewID); for (int i = 0; i < items.Count; i++) { VIZCore3D.NET.Data.SectionCommetItem item = items[i]; int no = item.No; int CommentID = item.CommentID; string title = item.Title; string comment = item.Comment; string author = item.Author; string createDate = item.CreateDate; string createDateShort = item.GetCreateDateFormatString("yyyy-MM-dd"); } }