Search results for query: *

  1. C

    XML Document added Extra "\"

    Hi, I have created xmldocument, which is created successfully, but the problem is when i want to convert xml document to string i'm getting result like this. automatically added the string \"1.0\" <?xml version=\"1.0\" encoding=\"UTF-8\" standalone="yes"?> but i need only <?xml...
  2. C

    Question Compressed String Length is high

    Hi, i have a string and i encrypt it and than Compressed that string. Result is Length of the Compressed string is high. I'm using the below code snippet public static string Compress(string text) { byte[] buffer = Encoding.UTF8.GetBytes(text); MemoryStream ms...
  3. C

    Question Remove nodes from XML string

    Hi, I have a xml string like this <?xml version='1.0' standalone='yes'?><NewDataSet><Table1><IP>100.100.178.116</IP><DBName>16Summus</DBName><DB_Status>Down</DB_Status></Table1></NewDataSet> <?xml version='1.0'...
  4. C

    Question Thread- Local Storage

    Hi Team, I have Task in Threading, The Scenario is: i have a multiple threads and they are returning a value. i have to store each thread returned value, once all the thread is completed. finally i consolidated it store all thread value and make single string. for that i'm using "Thread- Local...
Back
Top Bottom