Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
StringBuilder AppendFormat function
Message
From
13/02/2008 12:21:46
 
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:
01292244
Views:
19
>>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.

>
>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?

I've never seen that particular construct used.
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform