SimpleJSON.JSONNode.LoadFromBase64 C# (CSharp) Method

LoadFromBase64() public static method

public static LoadFromBase64 ( string aBase64 ) : JSONNode
aBase64 string
return JSONNode
		public static JSONNode LoadFromBase64(string aBase64)
		{
			var tmp = System.Convert.FromBase64String(aBase64);
			var stream = new System.IO.MemoryStream(tmp);
			stream.Position = 0;
			return LoadFromStream(stream);
		}
	}