Click here to Skip to main content
15,891,905 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problems changing selection in TextBox derived control Pin
Abisodun25-Mar-07 6:08
Abisodun25-Mar-07 6:08 
QuestionHelp required for Videoocx Pin
Ghoditsttoawn24-Mar-07 21:22
Ghoditsttoawn24-Mar-07 21:22 
AnswerRe: Help required for Videoocx Pin
Christian Graus25-Mar-07 3:06
protectorChristian Graus25-Mar-07 3:06 
GeneralRe: Help required for Videoocx Pin
Ghoditsttoawn31-Mar-07 20:27
Ghoditsttoawn31-Mar-07 20:27 
Questionbyte array - how to remove one item Pin
yarns24-Mar-07 20:05
yarns24-Mar-07 20:05 
AnswerRe: byte array - how to remove one item Pin
Leslie Sanford24-Mar-07 21:17
Leslie Sanford24-Mar-07 21:17 
GeneralRe: byte array - how to remove one item Pin
yarns24-Mar-07 21:21
yarns24-Mar-07 21:21 
GeneralRe: byte array - how to remove one item Pin
Baxtiyor7-Nov-10 22:39
Baxtiyor7-Nov-10 22:39 
private static byte[] RemoveFrom(byte[] source, int startpos, int length)
{
byte[] oldi = new byte[startpos];
byte[] orqa = new byte[source.Length-(startpos+length)];

Array.Copy(source, 0, oldi, 0, startpos);
Array.Copy(source, startpos + length, orqa, 0, source.Length - (startpos + length));
byte[] res = oldi.Concat(orqa).ToArray();
return res;
}
i'm student beginner c#

Questionimplementation with c# Pin
pariisa24-Mar-07 13:00
pariisa24-Mar-07 13:00 
AnswerRe: implementation with c# Pin
Christian Graus24-Mar-07 13:03
protectorChristian Graus24-Mar-07 13:03 
Questionhow to serialzie object to XML and send through Socket ??? Pin
zinc_z24-Mar-07 12:57
zinc_z24-Mar-07 12:57 
AnswerRe: how to serialzie object to XML and send through Socket ??? Pin
S. Senthil Kumar24-Mar-07 19:25
S. Senthil Kumar24-Mar-07 19:25 
AnswerRe: how to serialzie object to XML and send through Socket ??? Pin
johland26-Mar-07 3:48
johland26-Mar-07 3:48 
QuestionCsharp play wav and vox file Pin
Post524-Mar-07 12:35
Post524-Mar-07 12:35 
AnswerRe: Csharp play wav and vox file Pin
Christian Graus24-Mar-07 12:38
protectorChristian Graus24-Mar-07 12:38 
GeneralRe: Csharp play wav and vox file Pin
Post524-Mar-07 13:42
Post524-Mar-07 13:42 
GeneralRe: Csharp play wav and vox file Pin
Christian Graus24-Mar-07 14:09
protectorChristian Graus24-Mar-07 14:09 
AnswerRe: Csharp play wav and vox file Pin
Vasudevan Deepak Kumar24-Mar-07 15:22
Vasudevan Deepak Kumar24-Mar-07 15:22 
QuestionConverter to convert FoxPro expressions to VB .NET Pin
AndrusM24-Mar-07 11:51
AndrusM24-Mar-07 11:51 
AnswerRe: Converter to convert FoxPro expressions to VB .NET Pin
Christian Graus24-Mar-07 12:37
protectorChristian Graus24-Mar-07 12:37 
GeneralRe: Converter to convert FoxPro expressions to VB .NET Pin
AndrusM24-Mar-07 12:59
AndrusM24-Mar-07 12:59 
GeneralRe: Converter to convert FoxPro expressions to VB .NET Pin
Christian Graus24-Mar-07 13:04
protectorChristian Graus24-Mar-07 13:04 
QuestionHow to override property Pin
AndrusM24-Mar-07 11:38
AndrusM24-Mar-07 11:38 
AnswerRe: How to override property Pin
Leslie Sanford24-Mar-07 11:57
Leslie Sanford24-Mar-07 11:57 
GeneralRe: How to override property Pin
AndrusM24-Mar-07 12:06
AndrusM24-Mar-07 12:06 

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.