get<T> method

T get<T>(
  1. String key
)

Provides the ability to extract a data element from the represented CObject.

Implementation

T get<T>(String key) {
  return this[key];
}