Ahoj,
Jak je možné dociílt něco podobného něco jako toto?
public int this[string st]
{
get
{
...
}
set
{
..
}
}
public bool this[string st]
{
get
{
...
}
set
{
..
}
}
-----------------
Pro LValue to lze pro GET nejde
public object this[string st]
{
get
{
!! NEJDE !!
}
set
{
if (value.typeof() == Type.init)
...
}
}
Docházejí mě myšlenky.
Děkuji