Code Comments
Programming Forum and web based access to our favorite programming groups.I have the following managed code: String* ts; ts = S" test "; ts = ts->Trim(); ts = ts->ToUpper(); The ToUpper does not work; at the end of this ts is still lower case. What is the problem Thanks!
Post Follow-up to this messageUse "String^ ts" since 'String' is a managed type. -- http://www.tangiblesoftwaresolutions.com C++ to C# C++ to VB C++ to Java Java to VB & C# Instant C#: convert VB to C# Instant VB: convert C# to VB Instant C++: VB, C#, or Java to C++/CLI "Thomas" wrote: > I have the following managed code: > > String* ts; > ts = S" test "; > ts = ts->Trim(); > ts = ts->ToUpper(); > > The ToUpper does not work; at the end of this ts is still lower case. What > is the problem > > Thanks! > > >
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.