Beispiel #1
0
        private static HapticFeedbackFile Parse(string json)
        {
#if NETFX_CORE
            return(HapticFeedbackFile.ToHapticFeedbackFile(json));
#else
            var obj = fastJSON.JSON.ToObject <HapticFeedbackFile>(json);

            return(obj);
#endif
        }
 private static HapticFeedbackFile Parse(string json)
 {
     return(HapticFeedbackFile.ToHapticFeedbackFile(json));
 }