Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chrispulman/rxproperty

A Reactive Property based on https://github.com/reactiveui/ReactiveUI
https://github.com/chrispulman/rxproperty

property reactive reactiveui

Last synced: 4 months ago
JSON representation

A Reactive Property based on https://github.com/reactiveui/ReactiveUI

Awesome Lists containing this project

README

        

# RxProperty

RxProperty provides a Observable and Getable / Setable property using ReactiveUI as a base.

Target frameworks are .net 6.0, .net 7.0, .net 8.0, and .NET Standard 2.0.

## Installation

Install-Package RxProperty

## Usage

### RxProperty

```csharp
var property = new RxProperty(0);
property.Subscribe(x => Console.WriteLine(x));
property.Value = 1;
property.Value = 2;
```