Click here to Skip to main content
15,889,764 members
Please Sign up or sign in to vote.
1.67/5 (2 votes)
See more:
Help Me

After I created a public function debug memory Address Function How can I get

C#
public void WriteCodeline(int codeline, string img)
{
       MessageBox.Show(codeline, img);
}
Posted
Updated 30-Jan-10 4:20am

1 solution

public void WriteCodeline(int codeline, string img)
{
       MessageBox.Show(codeline.ToString(), img);
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900