public class JsonParser
{
public object Parse(string value)
{
return value.Trim() switch
{
{Length: 0} => null,
var json when json[0] == '{' && json[^1] == '}' => JsonObject(json),
var json when json[0] == '[' && json[^1] == ']' => JsonArray(json),
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # BEGIN! ###################################################### | |
| # Updates from: https://gist.github.com/alec1o/95c0d758ff448baaee26e9e72adaaef2 | |
| # build folders | |
| /[Oo]utput/ | |
| /[Oo]ut/ | |
| /.[Oo]ut/ | |
| /[Dd]ist/ | |
| /.[Dd]ist/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| space: [ㅤ] | |
| names: | |
| - name: ˡᵒᵛᵉ Aℓҽ | |
| - name: ˡᵒᵛᵉ Sҽιɳ | |
| - name: ˡᵒᵛᵉ Dιvα | |
| - name: ˡᵒᵛᵉ Hαɾɖ | |
| guild: | |
| tag: ˡᵒᵛᵉㅤ | |
| name: ℓσvҽ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "", | |
| "original_name": "", | |
| "description": "", | |
| "categorie": [], | |
| "tag": [], | |
| "season": [] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Git attributes for Unity projects | |
| # | |
| # Compiled by the GameCI community under the MIT license - https://game.ci | |
| # | |
| # Latest version at https://gist.github.com/webbertakken/ff250a0d5e59a8aae961c2e509c07fbc | |
| # | |
| # Ensure that text files that any contributor introduces to the repository have their line endings normalized | |
| * text=auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NetLimiter 3 | |
| Registration name: Peter Raheli | |
| Registration code: C99A2-QSSUD-2CSBG-TSRPN-A2BEB | |
| NetLimiter 4 | |
| Registration Name: Vladimir Putin #2 | |
| Registration Code: XLEVD-PNASB-6A3BD-Z72GJ-SPAH7 | |
| https://www.netlimiter.com/download | |
| # Netlimiter Full Netlimiter Activated Netlimiter cracked Netlimiter Full Version Netlimiter Serial Netlimiter keygen Netlimiter crack Netlimiter 4 serial Netlimiter 4 Crack Netlimiter 4 register Netlimiter 4 patch Netlimiter full Full version Netlimiter 4 Activated Netlimiter 4 Cracked Netlimiter Pro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Afghanistan", | |
| "dial_code": "+93", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Aland Islands", | |
| "dial_code": "+358", | |
| "code": "AX" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{"country":"Afghanistan","code":"93","iso":"AF"}, | |
| {"country":"Albania","code":"355","iso":"AL"}, | |
| {"country":"Algeria","code":"213","iso":"DZ"}, | |
| {"country":"American Samoa","code":"1-684","iso":"AS"}, | |
| {"country":"Andorra","code":"376","iso":"AD"}, | |
| {"country":"Angola","code":"244","iso":"AO"}, | |
| {"country":"Anguilla","code":"1-264","iso":"AI"}, | |
| {"country":"Antarctica","code":"672","iso":"AQ"}, | |
| {"country":"Antigua and Barbuda","code":"1-268","iso":"AG"}, | |
| {"country":"Argentina","code":"54","iso":"AR"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Unity ## | |
| *.cs diff=csharp text | |
| *.cginc text | |
| *.shader text | |
| *.mat merge=unityyamlmerge eol=lf | |
| *.anim merge=unityyamlmerge eol=lf | |
| *.unity merge=unityyamlmerge eol=lf | |
| *.prefab merge=unityyamlmerge eol=lf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using UnityEngine; | |
| using UnityEngine.Experimental.Networking; | |
| public class UnityWebRequestUsage : MonoBehaviour | |
| { | |
| void Start() | |
| { | |
| StartCoroutine(GetText()); | |
| } |
NewerOlder