Ejemplo n.º 1
0
 /// <summary>
 /// Grabs the next alpha-numeric space-delimited token from the input stream.
 /// </summary>
 public static bool AlnumToken(ref string str, out string arg)
 {
     using (FStringUnsafe strUnsafe = new FStringUnsafe(str))
         using (FStringUnsafe strResultUnsafe = new FStringUnsafe())
             using (FStringUnsafe resultUnsafe = new FStringUnsafe())
             {
                 bool success = Native_FParse.AlnumToken(ref strUnsafe.Array, ref resultUnsafe.Array, ref strResultUnsafe.Array);
                 str = strResultUnsafe.Value;
                 arg = resultUnsafe.Value;
                 return(success);
             }
 }