interface IMyInterface1
{
string Prop1 {get;set;}
string Prop2 {get;set;}
}
interface IMyInterface2
{
string Prop1 {get;set;}
string Prop3 {get;set;}
}
class MyClass : IMyInterface1, IMyInterface2
{
string Prop1 {get; set } // Общее свойство
string Prop2 {get; set }
string Prop3 {get; set }
}
pageHandler->setPageSize(int pageIndex, Size size);