()
| 1020 | |
| 1021 | /// <inheritdoc /> |
| 1022 | public override string ToString() |
| 1023 | { |
| 1024 | if (_managed != null) |
| 1025 | return _managed.GetTypeDisplayName() ?? string.Empty; |
| 1026 | if (_custom != null) |
| 1027 | return _custom.TypeName; |
| 1028 | return "<null>"; |
| 1029 | } |
| 1030 | |
| 1031 | /// <summary> |
| 1032 | /// Determines whether the current type derives from the specified type. |
no test coverage detected