Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
StringBuilder AppendFormat function
Message
From
13/02/2008 13:36:16
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 2.0
OS:
Windows XP
Database:
MS SQL Server
Miscellaneous
Thread ID:
01292192
Message ID:
01292301
Views:
25
This message has been marked as a message which has helped to the initial question of the thread.
>>>>AppendFormat just adds to the end of a string. It allows you to "parameterize" content of the string. It has nothing to do with CR/LF.
>>>
>>>Fred,
>>>
>>>I read the help of AppendFormat function. My question was WHY I do not see some sort of visual indication that I have CRLF in the generated string in the Debugger.
>>
>>If there's a CR or other special character I see a square in the debugger.
>>
>
>Hmmm, why I don't see anything then? Could be some VS setting I have to adjust?
>
>>>
>>>In fact the string seems to be correct, because ExecuteNonQuery returned 2 (number of rows affected).
>>>
>>>I'm also wondering, why in the code there is no CATCH block
>>>
>>> try
>>>        {
>>>            Command.Connection.Open();
>>>            Result = Command.ExecuteNonQuery();
>>>        }
>>>        finally
>>>        {
>>>            if (Conn.State == System.Data.ConnectionState.Open)
>>>                Command.Connection.Close();
>>>            Conn.Dispose();
>>>        }
>>>        return Result;
>>>
>>>
>>>
>>>Do we supress the exception this way if it occurs?

No. If an exception is thrown the code in the finally{} block is executed then the exception is passed up the chain. It's a valid construct but probably not used a great deal.

HTH,
Viv
Previous
Reply
Map
View

Click here to load this message in the networking platform