imbStringTemplateExtensionsapplyToContent Method (String, Boolean, PropertyCollection) |
Namespace: imbSCI.Core.reporting.extensions
public static string applyToContent( this string template, bool removeUnMatched, params PropertyCollection[] dataset )
1String templateString = "His is {{{title}}} {{{first_name}}} {{{last_name}}} working with {{{company_name}}}." 2String output = templateString.applyToContent(true, contactBean, accountBean);
1String output = templateString.applyToContent(true, contactBean, allCrmBeans, accountBean);