I'd do a c# version :)


-----Original Message-----
From: William H. Mitchell [mailto:whm@;mse.com] 
Sent: Wednesday, November 06, 2002 8:41 AM
To: [EMAIL PROTECTED]
Subject: [jug-discussion] Help needed with trivial Java -> VB6 and/or VB.NET
rewrite

I'm teaching a class on object-oriented analysis and design next week and I
just learned in the last couple of days that many of the attendees will be
most conversant in Visual Basic 6.0.

I'm looking for somebody to rewrite a couple of small Java examples in VB6
and/or VB.NET, and maybe answer some questions, too.  I can pay about $50
for the rewrites (150+/- lines of Java, some blank/trivial) and maybe
50c/minute for questions on the phone (DOE).  It would need to be done by
the first thing Saturday morning (11/9).

If you're interested you can reach me via mail or at 577-6431.

Here's the "interview": Convert this Java code to VB6 or VB.NET:

class Counter {
    public Counter(String name) {
        _count = 0;
        _name = name;
        }

    public void bump() {
        _count = _count + 1;
        }

    public void print() {
        System.out.println(_name + "'s count is " + _count);
        }

    public int getCount() {
        return _count;
        }

    private int _count;
    private String _name;
    }


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to