Skip to content

Commit e3cbcec

Browse files
committed
docs: add C# language version information to README
1 parent e86902b commit e3cbcec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -671,6 +671,10 @@ collection2.ReplaceOne(e => e.id == 11, dynamicUser as object);
671671
collection2.ReplaceOne((Predicate<dynamic>)(e => e.id == 11), dynamicUser);
672672
```
673673

674+
## C# Language Version
675+
676+
The main library (`JsonFlatFileDataStore`) uses C# 10 language features and targets .NET Standard 2.0. Most C# 10 features are compiler-only and work with .NET Standard 2.0. However, some C# 10 features require runtime support and are not compatible with .NET Standard 2.0.
677+
674678
## Unit Tests & Benchmarks
675679

676680
`JsonFlatFileDataStore.Test` and `JsonFlatFileDataStore.Benchmark` are _.NET 10_ projects.

0 commit comments

Comments
 (0)