October 24th, 2011 02:36 AM
I want to change the language of OS using C#.How can furnish using SetLocaleinfo() in c#
August 30th, 2011 04:26 AM
Actually I converted my VC .net project from Use Multi-Byte Character Set to Use Unicode Character Set (i.e. Unicode support). Then lot of build errors fixed.
Before in my project, I’m...
August 9th, 2011 04:13 AM
Currently my project is VC++.net written in Visual studio 2010. I need to support Unicode in this project. I changed my project properties that is Configuration Properties->Character set from Use...
August 2nd, 2011 02:34 AM
string str=@"MODULE: X
AVAILABLE BYTES: 3121152
MODULE: Y
ABC
DEF
GHI34
JKL.23
AVAILABLE BYTES: 3121152";
Regex moduleMemory = new Regex("MODULE: Y + .*AVAILABLE BYTES: ([0-9]*)",...