L'esempio seguente spiega come visualizzare il rapporto di un processo di importazione.
|
DccImportResultData importResultData = charts.Import(@"d:\Charts.dcc", DccImportOptions.None); IDictionary<ushort, ushort> remappedParameters = importResultData.RemappedParameterNumbers; foreach (KeyValuePair<ushort, ushort> remappedParameter in remappedParameters) { System.Console.WriteLine($"ParameterNumber <{remappedParameter.Key}> has been changed to <{remappedParameter.Value}> during import."); } |