After compiling C# and reviewing the API I am not seeing the method "?public static Processor GetProcessor()".
I have created another class called Processor that holds the Get;Set; for each string
C#
?public class ProcessorUtility
? ? {
? ? ? ??
? ? ? ? public ProcessorUtility() // Default Constructor
? ? ? ? {
? ? ? ? ? ? // needed for SIMPL+ to work!!!
? ? ? ? }
?
?
? ? ? ? public static Processor GetProcessor()
? ? ? ? {
? ? ? ? ? ? var processor = GetProcessorWithIPAndMACAddress();
? ? ? ? ? ? processor.ModelName = GetProcessorType();
? ? ? ? ? ? processor.ModelVersion = GetProcessorVersion();
?
? ? ? ? ? ? return processor;
? ? ? ? }