Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8837517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:44:44+00:00 2026-06-14T09:44:44+00:00

Is there an equivalent to Perl’s $_ function? I’m rewriting some old perl scripts

  • 0

Is there an equivalent to Perl’s $_ function? I’m rewriting some old perl scripts in C# and I never learned any perl. Heres an example of what i’m trying to figure out

sub copyText {
        while($_[0]){
            $_[1]->Empty();
            $_[0] = $_[1]->IsText();
            sleep(1);
         }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T09:44:47+00:00Added an answer on June 14, 2026 at 9:44 am

    First of all, $_ is not a function. It’s just an ordinary variable (that happens to be read and changed by a lot of builtins).

    Second of all, the code you posted does not use $_. It’s accessing elements of @_, the parameter list.

    A more more readable version of the code you posted would be:

    sub copyText {
       my ($arg1, $arg2) = @_;
       while ($arg1) {
          $arg2->Empty();
          $arg1 = $arg2->IsText();
          sleep(1);
       }
    
       $_[0] = $arg1;   # arg1 is passed by reference
    }
    
    • arg1 is a boolean passed by reference.
    • arg2 is some kind of object with a method named Empty and one named IsText.

    Sorry, I don’t know C#, but hopefully you can move on with this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any Perl equivalent for php's array_chunk() ? I'm trying to divide a
Is there an equivalent to Perl's format function in PHP? I have a client
Are there equivalent to perl -c syntax check for JavaScript from command? Given that
Just wondering... is there a PHP equivalent to Perl's Taint Mode? I don't think
Is there an equivalent Matlab dot function in numpy? The dot function in Matlab:
I'm wondering if there is an equivalent to Qt's signal/slot mechanism for Perl. I
What would be a equivalent example in perl of the bellow code to create
There are websites as collections of python/perl/R libraries. Why there is not an equivalent
Is there a Ruby equivalent of Perl Tie::File module?
What is the Powershell equivalent to Perl's qw() function? In v2 I can write

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.