class DoesBoth implements IFoo, IBar
get someProp # what do I do?
return this
interface IFoo
get someProp as IFoo
interface IBar
get someProp as IBar
Am I stuck? Is there any kind of workaround maybe using "partial"?
class DoesBoth implements IFoo, IBar
get someProp # what do I do?
return this
interface IFoo
get someProp as IFoo
interface IBar
get someProp as IBar
class DoesFoo implements IFoo
get someProp as IFoo
return this
class DoesBoth inherits DoesFoo implements IBar
get someProp as IBar is new
return this
interface IFoo
get someProp as IFoo
interface IBar
get someProp as IBar
Users browsing this forum: No registered users and 22 guests