How do I port "synchronized" functions from Visual J++ to C#?
Submitted by: AdministratorOriginal Visual J++ code: public synchronized void Run()
{
// function body
}
Ported C# code: class C
{
public void Run()
{
lock(this)
{
// function body
}
}
public static void Main() {}
}
Submitted by: Administrator
{
// function body
}
Ported C# code: class C
{
public void Run()
{
lock(this)
{
// function body
}
}
public static void Main() {}
}
Submitted by: Administrator
Read Online C# (Sharp) Programming Language Job Interview Questions And Answers
Top C# (Sharp) Programming Language Questions
| ☺ | What is the difference between const and static read-only? |
| ☺ | What is a delegate in C#? |
| ☺ | Why would you use untrusted verification? |
| ☺ | Which control cannot be placed in MDI? |
| ☺ | What does the parameter Initial Catalog define inside Connection String? |
Top Dot Net Technologies Categories
| ☺ | MSF Interview Questions. |
| ☺ | .Net Architecture Interview Questions. |
| ☺ | ASP.Net MVC Interview Questions. |
| ☺ | Entity Framework Interview Questions. |
| ☺ | C# (Sharp) Programming Language Interview Questions. |
