...Try with "\\'" or @"\'". Backslah is an escape character in C# strings and in your case you are escaping "'" and that's why result is same string ("\'" == "'"). If you want to insert backslah somwhere in string use "\\".
Cheers,
Batvanko ;-)
Try something like that:
class Class1
{
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
public struct WKSTA_USER_INFO_1
{
public string wkui1_username;
public string wkui1_logon_domain;
public string wkui1_oth_domains;
public string wkui1_logon_server...
I think you may may want to allocate memmory to store temp variable... something like that:
char *func()
{
string temp;
char *returnptr;
temp="Hello";
temp=temp+" World";
returnptr = new char[ temp.length() + 1];
strcpy( returnptr, temp.c_str() )...
.....that's why I'm asking, because all my tries to search the IBM's site resulted:<br>No hits were found for this query<br>or something like that :(<br>My version is 4.3.2 and there's no something like the package that smit asks for.<br><br>I'm looking for someone who has the same problem to...
When I'm trying to install my LAN Adapter smit tells that i have to install devices.pci.ec103981 device package, but where can I get it? <br><br>There is no such package into distributions and APAR fixes....?!?!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.