A
Size: a a a
A
E
E
E
interface IUnderlying {}
class Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
interface IUnderlying {}
struct Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
EN
interface IUnderlying {}
class Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
interface IUnderlying {}
struct Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
E
B
interface IUnderlying {}
class Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
interface IUnderlying {}
struct Implementation : IUnderlying {}
IEnumerable<Implementation> first = null;
IEnumerable<IUnderlying> second = first;
E
B
E
public interface IContainer<out C, out E>Она нихуя не работает, потому что
where C : IContainer<C, E>
where E : IEntity { }
public static class Methods {
static IContainer<C, IEntity> Cast<C, E>(C @in)
where C : IContainer<C, E>
where E : IEntity {
return @in;
}
}
C : IContainer<C, E>
автоматом не даунгрейдится до IContainer<C, IEntity>
. Что делать?B
public interface IContainer<out C, out E>Она нихуя не работает, потому что
where C : IContainer<C, E>
where E : IEntity { }
public static class Methods {
static IContainer<C, IEntity> Cast<C, E>(C @in)
where C : IContainer<C, E>
where E : IEntity {
return @in;
}
}
C : IContainer<C, E>
автоматом не даунгрейдится до IContainer<C, IEntity>
. Что делать?E
E
Accept<C, E>(IContainer<C, IEntity>) where C : IContainer<C, E> where E : IEntity
оно тупо не работаетE
T
G
T
B
T
B