Click here to Skip to main content
15,893,814 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Programming Pin
Dave Kreskowiak17-Mar-12 8:23
mveDave Kreskowiak17-Mar-12 8:23 
AnswerRe: C# Programming Pin
jschell17-Mar-12 7:54
jschell17-Mar-12 7:54 
Questioni need your help in ado.net Pin
mrx10016-Mar-12 13:10
mrx10016-Mar-12 13:10 
AnswerRe: i need your help in ado.net Pin
Richard Andrew x6416-Mar-12 13:13
professionalRichard Andrew x6416-Mar-12 13:13 
GeneralRe: i need your help in ado.net Pin
mrx10016-Mar-12 13:23
mrx10016-Mar-12 13:23 
GeneralRe: i need your help in ado.net Pin
Richard Andrew x6416-Mar-12 13:31
professionalRichard Andrew x6416-Mar-12 13:31 
GeneralRe: i need your help in ado.net Pin
mrx10016-Mar-12 13:47
mrx10016-Mar-12 13:47 
GeneralRe: i need your help in ado.net PinPopular
Richard Andrew x6416-Mar-12 13:41
professionalRichard Andrew x6416-Mar-12 13:41 
GeneralRe: i need your help in ado.net Pin
mrx10016-Mar-12 13:50
mrx10016-Mar-12 13:50 
AnswerRe: i need your help in ado.net Pin
Luc Pattyn16-Mar-12 19:15
sitebuilderLuc Pattyn16-Mar-12 19:15 
GeneralRe: i need your help in ado.net Pin
ProEnggSoft16-Mar-12 14:40
ProEnggSoft16-Mar-12 14:40 
Questionbackup Pin
nitish_0716-Mar-12 5:12
nitish_0716-Mar-12 5:12 
AnswerRe: backup Pin
Eddy Vluggen16-Mar-12 7:09
professionalEddy Vluggen16-Mar-12 7:09 
GeneralRe: backup Pin
nitish_0717-Mar-12 2:34
nitish_0717-Mar-12 2:34 
QuestionMethod CRService.crRequest can not be reflected. Pin
NarVish16-Mar-12 1:42
NarVish16-Mar-12 1:42 
AnswerRe: Method CRService.crRequest can not be reflected. Pin
Pete O'Hanlon16-Mar-12 1:45
mvePete O'Hanlon16-Mar-12 1:45 
GeneralRe: Method CRService.crRequest can not be reflected. Pin
NarVish16-Mar-12 1:47
NarVish16-Mar-12 1:47 
Questionc# Pin
mukesh methaniya15-Mar-12 22:36
mukesh methaniya15-Mar-12 22:36 
AnswerRe: c# Pin
BobJanova15-Mar-12 23:08
BobJanova15-Mar-12 23:08 
JokeRe: c# Pin
ZurdoDev16-Mar-12 6:23
professionalZurdoDev16-Mar-12 6:23 
GeneralRe: c# Pin
R. Giskard Reventlov16-Mar-12 6:56
R. Giskard Reventlov16-Mar-12 6:56 
GeneralRe: c# Pin
computerpublic16-Mar-12 11:43
computerpublic16-Mar-12 11:43 
GeneralRe: c# Pin
ZurdoDev16-Mar-12 12:58
professionalZurdoDev16-Mar-12 12:58 
QuestionCannot Resolve Path Error Pin
computerpublic15-Mar-12 16:31
computerpublic15-Mar-12 16:31 
AnswerRe: Cannot Resolve Path Error Pin
Peter_in_278015-Mar-12 17:19
professionalPeter_in_278015-Mar-12 17:19 
You need to learn about character escaping in strings.
computerpublic wrote:
byte[] data = File.ReadAllBytes("c:\tempPath");
That string is (shown 1 character per line for clarity)
c
:
tab character (\t)
e
m
p
P
a
t
h


What you probably mean is "c:\\tempPath" .

While you are at it, read up on Unicode.

Peter
Software rusts. Simon Stephenson, ca 1994.

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.