示例#1
0
 public string[] GetSlideSource()
 {
     if (!String.IsNullOrEmpty(Comment))
     {
         if (MonthlyData.Any())
         {
             return new[] { "comments", String.Format("monthly{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) }
         }
         ;
         if (TotalData.Any())
         {
             return new[] { "comments", String.Format("total{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) }
         }
         ;
         return(new[] { "comments", String.Format("none{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) });
     }
     else
     {
         if (MonthlyData.Any())
         {
             return new[] { "no_comments", String.Format("monthly{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) }
         }
         ;
         if (TotalData.Any())
         {
             return new[] { "no_comments", String.Format("total{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) }
         }
         ;
         return(new[] { "no_comments", String.Format("none{0}.pptx", !String.IsNullOrEmpty(InvestmentDetails) ? "_inv" : String.Empty) });
     }
 }