Click here to Skip to main content
15,888,968 members
Home / Discussions / C#
   

C#

 
Questionregex problem Pin
Mridang Agarwalla8-Sep-05 19:24
Mridang Agarwalla8-Sep-05 19:24 
AnswerRe: regex problem Pin
Guffa8-Sep-05 23:32
Guffa8-Sep-05 23:32 
QuestionNeed Help with HttpWebRequest Pin
Thaynann8-Sep-05 19:12
Thaynann8-Sep-05 19:12 
AnswerRe: Need Help with HttpWebRequest Pin
Andy Brummer8-Sep-05 20:08
sitebuilderAndy Brummer8-Sep-05 20:08 
GeneralRe: Need Help with HttpWebRequest Pin
Thaynann11-Sep-05 12:05
Thaynann11-Sep-05 12:05 
QuestionC# font problem Pin
8-Sep-05 19:11
suss8-Sep-05 19:11 
QuestionHow to deserialize string to data value object using C# Pin
Member 22374278-Sep-05 18:47
Member 22374278-Sep-05 18:47 
AnswerRe: How to deserialize string to data value object using C# Pin
S. Senthil Kumar8-Sep-05 20:34
S. Senthil Kumar8-Sep-05 20:34 
You could try converting the string to bytes using one of the System.Text.XXXEncoding classes and then wrap it in a MemoryStream. You could then use the MemoryStream as a parameter to the appropriate formatter (Binary/XML) and deserialize the object.

Sample code (doesn't compile)
byte []b = System.Text.ASCIIEncoding.GetBytes(text);
using (MemoryStream ms = new MemoryStream(b))
{
  YourClass obj = new BinaryFormatter(typeof(YourClass)).Deserialize(ms);
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
Questionantivirus help Pin
juni148-Sep-05 16:29
juni148-Sep-05 16:29 
AnswerRe: antivirus help Pin
Christian Graus8-Sep-05 16:53
protectorChristian Graus8-Sep-05 16:53 
GeneralRe: antivirus help Pin
Expert Coming8-Sep-05 17:19
Expert Coming8-Sep-05 17:19 
GeneralRe: antivirus help Pin
Christian Graus8-Sep-05 17:22
protectorChristian Graus8-Sep-05 17:22 
GeneralRe: antivirus help Pin
Expert Coming8-Sep-05 18:02
Expert Coming8-Sep-05 18:02 
GeneralRe: antivirus help Pin
Christian Graus8-Sep-05 18:03
protectorChristian Graus8-Sep-05 18:03 
GeneralRe: antivirus help Pin
WillemM9-Sep-05 1:02
WillemM9-Sep-05 1:02 
QuestionData Tables, Data Sets, and Data Grids Pin
Expert Coming8-Sep-05 16:23
Expert Coming8-Sep-05 16:23 
AnswerRe: Data Tables, Data Sets, and Data Grids Pin
Christian Graus8-Sep-05 16:37
protectorChristian Graus8-Sep-05 16:37 
GeneralRe: Data Tables, Data Sets, and Data Grids Pin
Expert Coming8-Sep-05 17:17
Expert Coming8-Sep-05 17:17 
GeneralRe: Data Tables, Data Sets, and Data Grids Pin
Christian Graus8-Sep-05 17:22
protectorChristian Graus8-Sep-05 17:22 
QuestionRe: Data Tables, Data Sets, and Data Grids Pin
Expert Coming8-Sep-05 18:11
Expert Coming8-Sep-05 18:11 
AnswerRe: Data Tables, Data Sets, and Data Grids Pin
Christian Graus8-Sep-05 18:14
protectorChristian Graus8-Sep-05 18:14 
QuestionRe: Data Tables, Data Sets, and Data Grids Pin
Expert Coming8-Sep-05 18:22
Expert Coming8-Sep-05 18:22 
AnswerRe: Data Tables, Data Sets, and Data Grids Pin
Christian Graus11-Sep-05 11:06
protectorChristian Graus11-Sep-05 11:06 
QuestionCalling a DLL from C# Pin
E6AD8-Sep-05 16:22
E6AD8-Sep-05 16:22 
AnswerRe: Calling a DLL from C# Pin
Christian Graus8-Sep-05 16:35
protectorChristian Graus8-Sep-05 16:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.