Observable Return

Returns an observable sequence that contains a single element or value.

Example:

        private static void HelloWorld()
        {
            Observable.Return<string>("Hello World").Subscribe(x => Console.WriteLine(x));
        }
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License