mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01: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);
|
|
}
|
|
}
|