問題タブ [jsonconvert]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
vb.net - VB.NET、変数名としてのキーワード
一部のjsonデータ文字列を構造に逆シリアル化する必要があります。問題は、データ名が VB キーワードと競合することです。これは C# では当てはまりません。
これはjson文字列です:
問題のある名前は明らかに「日付」と「エラー」です。どこかで、そのような変数には [] を付ける必要があることがわかりました。しかし、これは私にはうまくいきません。
これが私のコードです:
問題は、VB が許可していない名前と同じ名前を持っていない場合、デシリアライザーがデータをデシリアライズできないことです。C# では、この宣言は有効です。
しかし、VB.NET にはありません。ここで何をしますか?
c# - parse Dynamic c# class from a json
I want to build a dynamic class with a given JSON. Atm i parse the json with
and its working fine with other json then the given BUT my problem is that the names of the properties (here valueOne and valueTwo are "dynamic", i get always others)
i Know if i know the names i can get e.g. the description by customConfig.config.valueOne.description But what can i do to get e.g. the description by dont have the name of valueOne?
What i tried was to get it in a loop but i dont get it to another class.
item.description gets the right description but why i cant save it in the other class (which is also dynamic)?
c# - ジェネリック インターフェイスを継承するクラスを動的に逆シリアル化する方法
インターフェイスから拡張された複数のクラスがあり、「I」がインターフェイスであるリストにある各クラスを編集するためのjsonエディターがあります
それで、プロパティが編集された現在のクラスの変数があるとしましょう
新しい値を含む新しい Json ができました
編集中の現在のクラスに従って新しい json を逆シリアル化するにはどうすればよいですか?
それが役立つ場合はクラス名にアクセスできますが、その方法が見つかりません
現在選択されている Class : IRule と Reflector に対して .GetType() を試しました
変更されたjsonが元のクラスに保存されることを期待しています