Esempio n. 1
0
    public static void SetMetadata(string[] keys, string[] values)
    {
        int num = keys.Length;

        for (int i = 0; i < num; i++)
        {
            string val = keys[i];
            string key = values[i];
            StandaloneErrorReporter.SetValue(val, key);
        }
    }
Esempio n. 2
0
 public static void SetValue(string key, string value)
 {
     StandaloneErrorReporter.SetValue(key, value);
 }