WPF アプリケーションで Reactive 拡張機能を使用しています。そして、それを使用している間、あいまいな参照エラーを下回っています。
The type 'System.IObservable<T>' exists in both 'mscorlib.dll' and 'System.Reactive.dll'
完全修飾名でも試し、このURLも試しましたが、うまくいきませんでした。Reactive Extensions の .NET 4.0 バージョンを使用しています。
私のコード:
using System; // mscorlib.dll
using Rx = System.Reactive;
public Rx.IObservable<int> BytesReceived { get { return _bytesReceivedSubj; } } // Not valid as IObservable is in System namespace of System.Reactive.
public IObservable<int> BytesReceived { get { return _bytesReceivedSubj; } } // With this I'm getting ambiguous reference error
どうすればこれを解決できますか?
ありがとう