I'm fooling around in VS this morning after had no sleep: private static unsafe string CToString(char[] charPtr, int startIndex) { fixed (char* c = &charPtr[startIndex]) return new string(c); } This takes the char array and an integer as...