Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in vb I can do that

sub SetFocusControl(byref ctl as object)
  ctl.Focus
end sub

in c# the compiler complaint that object doesn't have a Focus method

void SetFocusControl(ref object ctl)
{
  ctl.Focus();
}

how can I do the same in c#?

thanks

share|improve this question

3 Answers

up vote 4 down vote accepted

Instead of using object, use the type that has the Focus method.

void SetFocusControl(Control ctl)
{
    ctl.Focus();
}

And I don't think you need the ref.

I'd also ask whether you need a separate method. Could you not just call the Focus method directly?

ctl.Focus();

If you don't know the type or if it has a Focus method you could do this.

void SetFocusControl(object ctl)
{
    Control control = ctl as Control

    if (null == control)
        return;

    control.Focus();
}
share|improve this answer
Thanks, Your code works fine, and you are right I don't need to use ref. – Javier Jul 5 '09 at 14:41

Javier- you should read about why C# is statically typed.

share|improve this answer

I can't speak to why this works in VB, but in c#, you've declared ctl as type object. Object has four public methods ToString, GetHashcode, GetType and Equals. To do this in c# you would need the method to accept a different type, like Control, that has a Focus method (or an interface that has that method), or after you receive the argument you will need to do type conversion and checking to get the object into a type that has a Focus method.

share|improve this answer
1  
VB allows late binding easily- you can change this behaviour by using Option Strict. See here- msdn.microsoft.com/en-us/library/zcd4xwzs(VS.80).aspx – RichardOD Jul 5 '09 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.