CustomFileListTAddStrings Method (IEnumerableString, Boolean, Boolean) |
Adds a list of paths to the filelist. It is assumed that the paths do not contain
duplicates. If you want to pass a filelist that may contain duplicates, use the
AddStrings(IEnumerableString, Boolean, Boolean) method.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public List<T> AddStrings(
IEnumerable<string> p_Paths,
bool p_Checked,
bool p_ContainsDuplicates
)
Public Function AddStrings (
p_Paths As IEnumerable(Of String),
p_Checked As Boolean,
p_ContainsDuplicates As Boolean
) As List(Of T)
public:
List<T>^ AddStrings(
IEnumerable<String^>^ p_Paths,
bool p_Checked,
bool p_ContainsDuplicates
)
member AddStrings :
p_Paths : IEnumerable<string> *
p_Checked : bool *
p_ContainsDuplicates : bool -> List<'T>
Parameters
- p_Paths
- Type: System.Collections.GenericIEnumerableString
a list of absolute paths or filenames to add - p_Checked
- Type: SystemBoolean
if true the items are added with state checked - p_ContainsDuplicates
- Type: SystemBoolean
set this to true if the list might contain duplicates (slower)
Return Value
Type:
ListTa list of items that where added
See Also