Click here to Skip to main content
15,913,854 members
Home / Discussions / C#
   

C#

 
GeneralRe: detect the write permissions Pin
Sonia Gupta15-Feb-08 23:55
Sonia Gupta15-Feb-08 23:55 
GeneralRe: detect the write permissions Pin
Ravenet16-Feb-08 1:53
Ravenet16-Feb-08 1:53 
GeneralJava to C# conversion Pin
james_dixon_200815-Feb-08 16:20
james_dixon_200815-Feb-08 16:20 
GeneralRe: Java to C# conversion Pin
Christian Graus15-Feb-08 22:34
protectorChristian Graus15-Feb-08 22:34 
GeneralRe: Java to C# conversion Pin
Ravenet16-Feb-08 1:57
Ravenet16-Feb-08 1:57 
Questionhow to push sbyte[] information in to httpResponse object. Pin
monk8215-Feb-08 15:25
monk8215-Feb-08 15:25 
AnswerRe: how to push sbyte[] information in to httpResponse object. Pin
Guffa16-Feb-08 0:27
Guffa16-Feb-08 0:27 
GeneralRe: how to push sbyte[] information in to httpResponse object. Pin
monk8218-Feb-08 15:47
monk8218-Feb-08 15:47 
Smile | :) Thanks.. It solved the issue now... I am doing conversion with 2s compliment. when i do it normally, negative values overflows and returns error message. I am using 1.1 version. Now I am getting maps..




for(int i=0;i< shortContent.GetLength(0);i++)
{
if(i==0)
mapContent=new byte[shortContent.GetLength(0)];
sval=shortContent[i];
if ( sval < 0 )
val = (byte)(256 + sval);
else
val = (byte)sval;

mapContent[i]=val;
}
GeneralHaving trouble with references. :( Pin
methhoo15-Feb-08 14:43
methhoo15-Feb-08 14:43 
GeneralRe: Having trouble with references. :( Pin
Christian Graus15-Feb-08 22:36
protectorChristian Graus15-Feb-08 22:36 
GeneralRe: Having trouble with references. :( Pin
DaveyM6915-Feb-08 22:38
professionalDaveyM6915-Feb-08 22:38 
GeneralRe: Having trouble with references. :( Pin
Luc Pattyn16-Feb-08 1:39
sitebuilderLuc Pattyn16-Feb-08 1:39 
GeneralAsyncCallback threading issue Pin
pokabot15-Feb-08 13:53
pokabot15-Feb-08 13:53 
GeneralRe: AsyncCallback threading issue Pin
Luc Pattyn15-Feb-08 14:34
sitebuilderLuc Pattyn15-Feb-08 14:34 
GeneralRe: AsyncCallback threading issue Pin
Ravenet16-Feb-08 2:00
Ravenet16-Feb-08 2:00 
GeneralGetting attributes of an mp3 file Pin
Jordanwb15-Feb-08 13:09
Jordanwb15-Feb-08 13:09 
GeneralRe: Getting attributes of an mp3 file Pin
Christian Graus15-Feb-08 22:39
protectorChristian Graus15-Feb-08 22:39 
GeneralRe: Getting attributes of an mp3 file Pin
Darkmoor16-Feb-08 5:37
Darkmoor16-Feb-08 5:37 
GeneralRe: Getting attributes of an mp3 file [modified] Pin
Jordanwb16-Feb-08 8:14
Jordanwb16-Feb-08 8:14 
QuestionIs type Foo? Pin
Judah Gabriel Himango15-Feb-08 11:55
sponsorJudah Gabriel Himango15-Feb-08 11:55 
AnswerRe: Is type Foo? Pin
Luc Pattyn15-Feb-08 13:41
sitebuilderLuc Pattyn15-Feb-08 13:41 
GeneralRe: Is type Foo? Pin
Judah Gabriel Himango18-Feb-08 6:53
sponsorJudah Gabriel Himango18-Feb-08 6:53 
GeneralRe: Is type Foo? Pin
Luc Pattyn18-Feb-08 8:44
sitebuilderLuc Pattyn18-Feb-08 8:44 
AnswerRe: Is type Foo? Pin
Guffa15-Feb-08 13:47
Guffa15-Feb-08 13:47 
GeneralRe: Is type Foo? Pin
Judah Gabriel Himango18-Feb-08 6:56
sponsorJudah Gabriel Himango18-Feb-08 6:56 

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.