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

C#

 
AnswerRe: Joystick Driver Project Pin
Richard MacCutchan20-Feb-14 2:55
mveRichard MacCutchan20-Feb-14 2:55 
AnswerRe: Joystick Driver Project Pin
Dave Kreskowiak20-Feb-14 3:32
mveDave Kreskowiak20-Feb-14 3:32 
QuestionHow to read view permission groups from DFS link objects? Pin
RolandZ19-Feb-14 23:15
RolandZ19-Feb-14 23:15 
Questionpublished c# application cannot start Pin
emma.sun.sts19-Feb-14 20:04
emma.sun.sts19-Feb-14 20:04 
AnswerRe: published c# application cannot start Pin
OriginalGriff19-Feb-14 21:06
mveOriginalGriff19-Feb-14 21:06 
GeneralRe: published c# application cannot start Pin
emma.sun.sts23-Feb-14 13:58
emma.sun.sts23-Feb-14 13:58 
AnswerRe: published c# application cannot start Pin
Richard Deeming20-Feb-14 1:53
mveRichard Deeming20-Feb-14 1:53 
GeneralRe: published c# application cannot start Pin
emma.sun.sts23-Feb-14 14:00
emma.sun.sts23-Feb-14 14:00 
QuestionHow to make POS payments to bank? Pin
Member 1059798819-Feb-14 15:13
Member 1059798819-Feb-14 15:13 
AnswerRe: How to make POS payments to bank? Pin
Dave Kreskowiak19-Feb-14 16:40
mveDave Kreskowiak19-Feb-14 16:40 
AnswerRe: How to make POS payments to bank? Pin
OriginalGriff19-Feb-14 21:09
mveOriginalGriff19-Feb-14 21:09 
GeneralMessage Closed Pin
20-Feb-14 0:49
professionalJubayer Ahmed20-Feb-14 0:49 
GeneralRe: How to make POS payments to bank? Pin
Eddy Vluggen20-Feb-14 4:58
professionalEddy Vluggen20-Feb-14 4:58 
GeneralMessage Closed Pin
20-Feb-14 8:51
professionalJubayer Ahmed20-Feb-14 8:51 
GeneralRe: How to make POS payments to bank? Pin
Eddy Vluggen20-Feb-14 22:30
professionalEddy Vluggen20-Feb-14 22:30 
AnswerRe: How to make POS payments to bank? Pin
jschell20-Feb-14 8:38
jschell20-Feb-14 8:38 
QuestionHow to read and write xml attributes Pin
daddy35619-Feb-14 12:02
daddy35619-Feb-14 12:02 
QuestionRe: How to read and write xml attributes Pin
Matt T Heffron19-Feb-14 12:39
professionalMatt T Heffron19-Feb-14 12:39 
AnswerRe: How to read and write xml attributes Pin
daddy35619-Feb-14 15:41
daddy35619-Feb-14 15:41 
GeneralRe: How to read and write xml attributes Pin
Peter Leow19-Feb-14 13:21
professionalPeter Leow19-Feb-14 13:21 
QuestionPdf Converter in Shared Add-in Pin
Member 1059193119-Feb-14 4:01
Member 1059193119-Feb-14 4:01 
AnswerRe: Pdf Converter in Shared Add-in Pin
Eddy Vluggen19-Feb-14 8:15
professionalEddy Vluggen19-Feb-14 8:15 
QuestionBackslash issue Pin
Ashfaque Hussain19-Feb-14 1:41
Ashfaque Hussain19-Feb-14 1:41 
Its not giving the true results:

C#
class Program
  {
      static void Main(string[] args)
      {
          string check = "324214234\r\n";
          RegistryKey regKey = Registry.LocalMachine.CreateSubKey("SOFTWARE\\MyRegKey\\Settings");
          regKey.SetValue("ReceiveSplChar", @"\r\n");
          string value = regKey.GetValue("ReceiveSplChar").ToString();
          if (check.Contains(value))
              Console.WriteLine("TRUE");
      }
  }

C#




Please fix this issue.
AnswerRe: Backslash issue Pin
BotCar19-Feb-14 2:13
BotCar19-Feb-14 2:13 
AnswerRe: Backslash issue Pin
Richard MacCutchan19-Feb-14 2:55
mveRichard MacCutchan19-Feb-14 2:55 

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.