| NAntContrib  Help  Function Reference  fileset::to-string | v0.93-nightly-2012-09-19 | 
[This is preliminary documentation and subject to change.]
Returns a delimited string of all the filenames within a <fileset> with each filename separated by the specified delimiter string.
string fileset::to-string(fileset, delimiter)
            
    
    | Name | Type | Description | 
|---|---|---|
| fileset | string | The id of the fileset to check. | 
| delimiter | string | String to separate filenames with. | 
Displays a space-pipe-space separated string fo the files within a defined FileSet.
<fileset id="test.fileset">
    <include name="**/*.cs">
</fileset>
<echo message="${fileset::to-string('test.fileset', ' | ')}">