S
Sadun Sevingen
i have SqlParameterCollection and i want to reach it by SET and GET
methods...
public SqlParameterCollection Parameter this[string Parameter]
{
get
{
return Command.Parameters[Parameter];
}
set
{
Command.Parameters[Parameter] = value;
}
}
which is not right... but i want to do ???
methods...
public SqlParameterCollection Parameter this[string Parameter]
{
get
{
return Command.Parameters[Parameter];
}
set
{
Command.Parameters[Parameter] = value;
}
}
which is not right... but i want to do ???