Emgu.CV.CvInvoke.GetModuleFormatString C# (CSharp) Метод

GetModuleFormatString() публичный статический Метод

Get the module format string.
public static GetModuleFormatString ( ) : String
Результат String
        public static String GetModuleFormatString()
        {
            String formatString = "{0}";
             if (Emgu.Util.Platform.OperationSystem == Emgu.Util.TypeEnum.OS.Windows)
            formatString = "{0}.dll";
             else if (Emgu.Util.Platform.OperationSystem == Emgu.Util.TypeEnum.OS.Linux)
            formatString = "lib{0}.so";
             else if (Emgu.Util.Platform.OperationSystem == Emgu.Util.TypeEnum.OS.MacOSX)
            formatString = "lib{0}.dylib";
             return formatString;
        }
CvInvoke