| 9 | namespace MdfLibrary { |
| 10 | |
| 11 | Int64 MdfChannelConversion::Index::get() { |
| 12 | return conversion_ != nullptr ? conversion_->Index() : 0; |
| 13 | } |
| 14 | |
| 15 | String^ MdfChannelConversion::Name::get() { |
| 16 | return conversion_ != nullptr ? MdfLibrary::Utf8Conversion(conversion_->Name()) : gcnew String(""); |
nothing calls this directly
no test coverage detected