1
0
mirror of synced 2025-12-23 21:05:00 -05:00

Api diff between net5.0 and netcoreapp3.1 & netstandard2.1 (#5610)

* .net shared framework changes

* standalone net 5.0 packages

* netstanard2.1 diff

* improving the directory structure

* adding a readme file

* aspnetcore shared framework changes

* remove wrong process type change diff

* adding comments about apis being to inbox from package
This commit is contained in:
Anirudh Agnihotry
2020-11-18 10:40:01 -08:00
committed by GitHub
parent dba4f9ec40
commit fdaef4427a
186 changed files with 10714 additions and 301 deletions

View File

@@ -0,0 +1,11 @@
# System.Runtime.Remoting
``` diff
+namespace System.Runtime.Remoting {
+ public class ObjectHandle : MarshalByRefObject {
+ public ObjectHandle(object o);
+ public object Unwrap();
+ }
+}
```