Retrieves the keys and names of all the DNF codes.
Public Function GetDNFCodeSetupList() As DNFCodeSetupParamsCollection
DNFCodeSetupParamsCollection paramsCollection = dnfCodesService.GetDNFCodeSetupList(); int i = 1; int[] keys = new int[paramsCollection.Count]; foreach (DNFCodeSetupParams codeParams in paramsCollection) { Console.WriteLine("item {0}: InternalKey:{1}, Code:{2}", i, codeParams.AbsEntry, codeParams.DNFCode); keys[i - 1] = codeParams.AbsEntry; i++; }
DNFCodeSetupService Object