問題タブ [dryioc]
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.
xamarin.android - XamarinAndroid Register Singleton の DryIoc は機能していますが、通常の Register は機能していません
IMyGameView インターフェイスから MyGameView クラスを継承し、OpenTK から AndroidGameView クラスを継承しています。
というわけで、シングルトンで MyGameView クラスを登録すれば動作するのですが、通常の登録で登録するとアプリケーションが応答せず出力テキストが無意味になります。
クラスとインターフェース:
Container.Register< IMyGameView, MyGameView> (Reuse.Singleton);
働く
Container.Register< IMyGameView, MyGameView>();
動作していません
誰にもアイデアはありますか?