Append method

void Append(
  1. T value
)

Implementation

void Append(T value) {
  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 _Append_String(value as String);
    // Handle WinRT types
    default:
      return _Append_COMObject(value);
  }
}