mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Property visibility fixes for default interface methods
This commit is contained in:
parent
2746a53839
commit
16de3a14a4
5 changed files with 45 additions and 11 deletions
|
@ -4,6 +4,19 @@ using System.Diagnostics;
|
|||
|
||||
namespace LibA
|
||||
{
|
||||
public interface ITaggable
|
||||
{
|
||||
public String Tag
|
||||
{
|
||||
get;
|
||||
}
|
||||
|
||||
public bool MatchesTag(String tag)
|
||||
{
|
||||
return Tag.Equals(tag);
|
||||
}
|
||||
}
|
||||
|
||||
struct LibAStruct
|
||||
{
|
||||
int mA;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue