|
-
Mar 1st, 2004, 02:51 PM
#1
Stop command in C#?
for those of you who do C#, what is there something like VB's stop command in C# that would stop the debugger
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 1st, 2004, 03:42 PM
#2
Sleep mode
You mean in the IDE ?
-
Mar 1st, 2004, 09:32 PM
#3
Originally posted by Pirate
You mean in the IDE ?
well you put STOP in your code and when the debugger reaches that line it PAUSES on that line.... isnt there anything like that in C#?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 1st, 2004, 11:49 PM
#4
Frenzied Member
Set a break point. Click in the left margin beside the line where you want the execution to stop. A red circle should appear.
-
Mar 1st, 2004, 11:52 PM
#5
Originally posted by DevGrp
Set a break point. Click in the left margin beside the line where you want the execution to stop. A red circle should appear.
eeh well yeah that's what I was doing but I thought maybe C# is kind and keen like VB and it provides a way to stop the debugger by code. Well, apparently not... hehe thanks anyways
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 2nd, 2004, 05:07 AM
#6
Sleep mode
Nothing like this in C# .
-
Mar 2nd, 2004, 12:46 PM
#7
Addicted Member
System.Diagnostics.Debugger.Break();
-Daryl
"Two More Rolls of Duct tape, and the world is mine!"
VB.NET Guru
-
Mar 2nd, 2004, 02:27 PM
#8
Sleep mode
VB Code:
System.Diagnostics.Debugger.DidNotKnowThat():bigyello:
-
Mar 3rd, 2004, 03:20 PM
#9
Originally posted by Pirate
Nothing like this in C# .
you big lier if you didnt know it then you should have said that you dont know it, instead of saying it doesnt exist hehe
thanks Dmyze, I was looking in Diagnostics.Debug instead of Debugger... hehe
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|