System.Runtime.Serialization.Formatters.Binary.Converter.ToComType C# (CSharp) Method

ToComType() static private method

static private ToComType ( InternalPrimitiveTypeE code ) : string
code InternalPrimitiveTypeE
return string
        internal static string ToComType(InternalPrimitiveTypeE code)
        {
            if (s_valueA == null)
            {
                InitValueA();
            }
            return s_valueA[(int)code];
        }

Usage Example

 private void DumpInternal()
 {
     if (BCLDebug.CheckEnabled("BINARY"))
     {
         string text = Converter.ToComType(this.typeInformation);
     }
 }
All Usage Examples Of System.Runtime.Serialization.Formatters.Binary.Converter::ToComType