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

  • Home
  • SEARCH
  • 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 7822853
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T08:03:22+00:00 2026-06-02T08:03:22+00:00

I am writing some class in c# that have a function Print(string s) In

  • 0

I am writing some class in c# that have a function

Print(string s)

In the last version i found out that this function called from many threads and every time this function called it should be locked. In C language i can rename this function to

PrintA(string s) 

and change the header file to something like

#define Print(a) {Lock(PrintA) //
                  { //
                      PrintA(a) //
                  } //
                 } 

Is it possible to write something like this in C#?
I just want to change one place instead multiple place all over the code.

  • 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-02T08:03:23+00:00Added an answer on June 2, 2026 at 8:03 am

    There are no macros in C#. To add synchronization to a method, you can use:

    void Print(string s)
    {
        lock (lockObject) { PrintA(s); }
    }
    

    You’ll need to define a lock object, simply add a field to your class

    private readonly object lockObject = new object();
    

    [MethodImpl(MethodImplOptions.Synchronized)] is less recommended as it uses this as the lock object, which means users can interfere with locking logic and cause deadlocks.

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

Sidebar

Related Questions

I've got a method in a class that's writing to some string, which calls
From this question here , I was writing an enum wrapper to have some
While making some final tests of a class-library that I'm writing for Windows Mobile
I am writing some unit test and I have a unit testing base class
I'm writing some callback implementation in C++. I have an abstract callback class, let's
I have some experience writing web applications in Java for class projects. My first
I'm writing some C++ code that will have to send data over TCP/IP. I
In a simulation I'm writing I have a class that represents an Agent that
I have a C++ class that requires a function pointer in it's constructor (
I am writing some code to type strings using the Robot class. Everything is

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.