Skip to content

Commit

Permalink
Merge pull request dotnet/coreclr#6488 from stephentoub/add_objref_ms…
Browse files Browse the repository at this point in the history
…corlib

Add IObjectReference to mscorlib ref assembly

Commit migrated from dotnet/coreclr@50d9704
  • Loading branch information
stephentoub authored Jul 27, 2016
2 parents 7ff8dff + 53e7c84 commit 0ba5b70
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/coreclr/src/mscorlib/ref/mscorlib.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11314,6 +11314,11 @@ public interface IFormatterConverter
DateTime ToDateTime(object value);
String ToString(object value);
}
[System.Runtime.InteropServices.ComVisible(true)]
public interface IObjectReference
{
object GetRealObject(StreamingContext context);
}
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public interface ISerializable
{
Expand Down

0 comments on commit 0ba5b70

Please sign in to comment.