Question
How do i do implement a trace and assert?

Answers

Use a conditional attribute on the method, as shown below:
class Debug
{
[conditional("TRACE")]
public void Trace(string s)
{
Console.WriteLine(s);
}
}
class MyClass
{
public static void Main()
{
Debug.Trace("hello");
}
}
In this example, the call to Debug.Trace() is made only if the preprocessor symbol TRACE is defined at the call site. You can define preprocessor symbols on the command line by using the /D switch. The restriction on conditional methods is that they must have void return type.   Your Comment




More Software Questions..
What is the inputsplit in map reduce software?

What is software configuration management?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?

What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?

Which oracle package is used to manage the oracle lock management services?

What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?

What is marker interface?

What types of partitioning are there for BW?



Search
Can you Answer!!
  • Q The small and marginal farmers will get irrigation facilities through which plan?
  • Q What are the root communities associated with W3C?
  • Q Mizoram capital?
  • Q How can a search record dialog box be suppressed?
  • Q What is meant by serialisation and deserialisation?
  • Q Where Table Data Is Stored by the MyISAM Storage Engine?
  • Q The reported speech of : The police officer said to us ‘Where are you going?’ is -The Police officer asked us where ______ :
  • Q What is a biosphere?
  • Q Which of the following countries is in the continent of europe?
  • Q Who was married by Adolf Hitler the day before he committed suicide:
  • Q Is it possible to nest cfml conditional tags?