git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| /// <summary> | |
| /// Compare if given two byte arrays are identical. | |
| /// </summary> | |
| /// <param name="x">byte array to compare.</param> | |
| /// <param name="y">byte array to compare.</param> | |
| /// <returns>true if x and y are identical.</returns> | |
| public unsafe static bool ByteArrayCompare(byte[] x, byte[] y) | |
| { | |
| if (x == null || y == null || x.Length != y.Length) | |
| { |