Exemplo n.º 1
0
 public static IDisposable SubscribeToText <T>(this UniRx.IObservable <T> source, Text text, Func <T, string> selector)
 {
     return(source.SubscribeWithState2(text, selector, delegate(T x, Text t, Func <T, string> s)
     {
         t.text = s(x);
     }));
 }