UniRx使用時のトラブルシューティング

メモ

  • Cannot convert lambda expression to type 'IObserver' because it is not a delegate type

-> Using UniRx;が抜けていないかチェックする。

  • The type or namespace name 'IObservable<>' could not be found (are you missing a using directive or an assembly reference?)

-> Using System;が抜けていないかチェックする。