mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
12 lines
232 B
C#
12 lines
232 B
C#
using System.Web.Script.Serialization;
|
|
|
|
class Good
|
|
{
|
|
public static object Deserialize(string s)
|
|
{
|
|
// GOOD
|
|
JavaScriptSerializer sr = new JavaScriptSerializer();
|
|
return sr.DeserializeObject(s);
|
|
}
|
|
}
|