Ejemplo n.º 1
0
 /// <summary>
 /// Returns the code/label pair for the provided enumeration code
 /// </summary>
 public static KeyValuePair <string, string> Decode(C80FormatCode code)
 {
     return(m_C80FormatCode_mappings[code]);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Returns the code/label pair for the provided enumeration code
 /// </summary>
 public static KeyValuePair<string, string> Decode(C80FormatCode code)
 {
     return m_C80FormatCode_mappings[code];
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Returns a <see cref="CodedValue"/> for the code
        /// </summary>
        public static CodedValue ToCodedValue(this C80FormatCode code)
        {
            KeyValuePair <string, string> pair = Decode(code);

            return(new CodedValue(pair.Key, pair.Value, "2.16.840.1.113883.3.88.12.80.73"));
        }