コード例 #1
0
 /// <summary>
 /// If the provided value is an observable, return its value, otherwise just pass it through.
 /// </summary>
 /// <param name="value">The value to unwrap.</param>
 public static T UnwrapObservable <T>(Observable <T> value)
 {
     return(default(T));
 }
コード例 #2
0
 /// <summary>
 /// Returns an Array of numbers starting from the specified minimum to the maximum
 /// </summary>
 public static int[] Range(Observable <int> min, Observable <int> max)
 {
     return(null);
 }