Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/System.Runtime/ref/System.Runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5667,6 +5667,7 @@ protected MemberInfo() { }
public abstract object[] GetCustomAttributes(Type attributeType, bool inherit);
public abstract bool IsDefined(Type attributeType, bool inherit);
public virtual System.Collections.Generic.IList<System.Reflection.CustomAttributeData> GetCustomAttributesData() { throw null; }
public virtual bool HasSameMetadataDefinitionAs(System.Reflection.MemberInfo other) { throw null; }
}
[Flags]
public enum MemberTypes
Expand Down
1 change: 1 addition & 0 deletions src/System.Runtime/tests/System.Runtime.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
<Compile Include="System\LazyTests.netcoreapp.cs" />
<Compile Include="System\StringTests.netcoreapp.cs" />
<Compile Include="System\TimeSpanTests.netcoreapp.cs" />
<Compile Include="System\Reflection\MemberInfoTests.netcoreapp.cs" />
<Compile Include="System\Reflection\TypeDelegatorTests.netcoreapp.cs" />
<Compile Include="System\Reflection\TypeInfoTests.netcoreapp.cs" />
<Compile Include="System\Runtime\CompilerServices\RuntimeHelpersTests.netcoreapp.cs" />
Expand Down
Loading