Click here to Skip to main content
16,005,473 members
Home / Discussions / C#
   

C#

 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
bigeyed4-Feb-09 21:48
bigeyed4-Feb-09 21:48 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott4-Feb-09 21:59
Rob Philpott4-Feb-09 21:59 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
bigeyed5-Feb-09 1:29
bigeyed5-Feb-09 1:29 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott5-Feb-09 1:54
Rob Philpott5-Feb-09 1:54 
GeneralRe: HttpWebResponse's GetResponse() hangs.. Pin
Rob Philpott5-Feb-09 2:00
Rob Philpott5-Feb-09 2:00 
QuestionHelp C -> C# (FSC-16 Table Generator) Pin
TaeGyu Kang4-Feb-09 20:05
TaeGyu Kang4-Feb-09 20:05 
AnswerRe: Help C -> C# (FSC-16 Table Generator) Pin
Christian Graus4-Feb-09 20:38
protectorChristian Graus4-Feb-09 20:38 
AnswerRe: Help C -> C# (FSC-16 Table Generator) Pin
Dave Doknjas5-Feb-09 14:08
Dave Doknjas5-Feb-09 14:08 
<code>
static int Main()
{
//C++ TO C# CONVERTER NOTE: 'register' variable declarations are not supported in C#:
//ORIGINAL LINE: register uint b, v;
uint b;
uint v;
//C++ TO C# CONVERTER NOTE: 'register' variable declarations are not supported in C#:
//ORIGINAL LINE: register int i;
int i;

Console.Write("typedef unsigned short u16;\n");
Console.Write("static u16 fcstab[256] = {");
for (b = 0; Wink | ;)
{
if (b % 8 == 0)
Console.Write("\n");

v = b;
for (i = 8; i--;)
v = v & 1 ? (v >> 1) ^ DefineConstants.P : v >> 1;

Console.Write("\t0x{0:x4}", v & 0xFFFF);
if (++b == 256)
break;
Console.Write(",");
}
Console.Write("\n};\n");
}

internal sealed class DefineConstants
{
public const int P = 0x8408;
}
</code>

David Anton
http://www.tangiblesoftwaresolutions.com
C++ to C# Converter
C++ to VB Converter
C++ to Java Converter
VB & C# to Java Converter
Java to VB & C# Converter
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: convert VB, C#, or Java to C++
GeneralRe: Help C -&gt; C# (FSC-16 Table Generator) Pin
Dave Doknjas5-Feb-09 14:15
Dave Doknjas5-Feb-09 14:15 
QuestionLog analyzer Pin
CodingLover4-Feb-09 19:59
CodingLover4-Feb-09 19:59 
AnswerRe: Log analyzer Pin
SeMartens4-Feb-09 21:16
SeMartens4-Feb-09 21:16 
NewsRe: Log analyzer Pin
CodingLover4-Feb-09 21:37
CodingLover4-Feb-09 21:37 
GeneralRe: Log analyzer Pin
SeMartens4-Feb-09 22:12
SeMartens4-Feb-09 22:12 
QuestionSend SMS to multiple recipients Pin
oviyaa4-Feb-09 19:44
oviyaa4-Feb-09 19:44 
AnswerRe: Send SMS to multiple recipients Pin
stancrm4-Feb-09 20:31
stancrm4-Feb-09 20:31 
AnswerRe: Send SMS to multiple recipients Pin
Christian Graus4-Feb-09 20:32
protectorChristian Graus4-Feb-09 20:32 
AnswerRe: Send SMS to multiple recipients Pin
Bharat Jain4-Feb-09 20:59
Bharat Jain4-Feb-09 20:59 
AnswerRe: Send SMS to multiple recipients Pin
arun_pk4-Feb-09 23:54
arun_pk4-Feb-09 23:54 
GeneralRe: Send SMS to multiple recipients Pin
arun_pk4-Feb-09 23:55
arun_pk4-Feb-09 23:55 
GeneralRe: Send SMS to multiple recipients Pin
oviyaa19-Feb-09 18:47
oviyaa19-Feb-09 18:47 
GeneralRe: Send SMS to multiple recipients Pin
oviyaa19-Feb-09 18:52
oviyaa19-Feb-09 18:52 
GeneralRe: Send SMS to multiple recipients Pin
mike.james27-Jul-09 3:10
mike.james27-Jul-09 3:10 
QuestionSamples on pens and brushes,colors and fonts Pin
ravi.vellanky4-Feb-09 18:28
ravi.vellanky4-Feb-09 18:28 
AnswerRe: Samples on pens and brushes,colors and fonts Pin
Christian Graus4-Feb-09 20:29
protectorChristian Graus4-Feb-09 20:29 
Questionimporting excel sheets Pin
aneeshkumar5204-Feb-09 18:26
aneeshkumar5204-Feb-09 18:26 

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.