to install (from here):
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
to install (from here):
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Used the latest VMWare unlocker tool from here: https://github.com/DrDonk/unlocker
Used macOS Mojave 10.14 by SYSNETTECH Solutions Full Version.iso
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Hangfire.Common; | |
| using Hangfire.States; | |
| using Hangfire.Storage; | |
| namespace Hangfire.Pro | |
| { | |
| /// <summary> |
| public class MyType : Enumeration | |
| { | |
| //don't allow type to be constructed | |
| private MyType(int value, string displayName) : base(value, displayName) { } | |
| public static readonly MyType Type1 = new MyType(1, "Type One"); | |
| public static readonly MyType Type2 = new MyType(2, "Type Two"); | |
| public static readonly MyType DerivedType3 = new DerivedMyType(3, "Type Three"); | |
| public virtual int GetSomethingAboutThisType() |