ReplaceAll method
Implementation
void ReplaceAll(List<T> items) {
switch (T) {
// TODO: Need to update this once we add support for types like `int`,
// `bool`, `double`, `GUID`, `DateTime`, `Point`, `Size` etc.
case String:
return _ReplaceAll_String(items as List<String>);
// Handle WinRT types
default:
return _ReplaceAll_COMObject(items);
}
}