BuffersAndSlidingWindows.Program.ControllingTheWindowClosure C# (CSharp) Méthode

ControllingTheWindowClosure() private static méthode

private static ControllingTheWindowClosure ( ) : void
Résultat void
        private static void ControllingTheWindowClosure()
        {
            Subject<int> numbers=new Subject<int>();
            Subject<Unit> mouseClicks = new Subject<Unit>();
            var windows=numbers.Window(() => mouseClicks);
        }