blah blah blah is here! blah blah » Close

0
votes
1 answers

Why can I only show 50 characters in my C# application?

I have a multiline textbox that I am using to display the results of a couple thousand items I am placing into a SQL database during its runtime; Using a background worker to add all data in. The return value is often greater than 50 cha ...

0
votes
1 answers

Strings - Automatically Truncating

eeboy
499

Can I declare a fixed length string? Or have the string automatically truncated? For example, I want a fixed length of 5: string s; s="Testing"; //s <- "Testi"

Feedback