¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Calling a C# method from Simpl+


 

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;
? ? ? ? }

Join [email protected] to automatically receive all group messages.