Click here to Skip to main content
15,892,059 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to access a local variable from out side it's function Pin
Sakkijha20-Sep-04 22:26
Sakkijha20-Sep-04 22:26 
GeneralRe: How to access a local variable from out side it's function Pin
sreejith ss nair20-Sep-04 22:40
sreejith ss nair20-Sep-04 22:40 
GeneralRe: How to access a local variable from out side it's function Pin
Sakkijha20-Sep-04 23:39
Sakkijha20-Sep-04 23:39 
GeneralRe: How to access a local variable from out side it's function Pin
sreejith ss nair20-Sep-04 23:51
sreejith ss nair20-Sep-04 23:51 
GeneralRe: How to access a local variable from out side it's function Pin
Sakkijha21-Sep-04 20:40
Sakkijha21-Sep-04 20:40 
GeneralRe: How to access a local variable from out side it's function Pin
Stefan Troschuetz21-Sep-04 4:16
Stefan Troschuetz21-Sep-04 4:16 
QuestionDummies Question: char[] to byte[] Howto? Pin
Ariadne20-Sep-04 20:39
Ariadne20-Sep-04 20:39 
AnswerRe: Dummies Question: char[] to byte[] Howto? Pin
sreejith ss nair20-Sep-04 23:21
sreejith ss nair20-Sep-04 23:21 
hi,

using System;

class Example
{
public static void Main()
{
Char[] chars = new char[]{'A','B','C','D'};

byte[] br = Converter(chars);

}

unsafe static byte[] Converter(char[] Arr)
{
unsafe
{
byte[] By=new byte[Arr.Length];
fixed(char *p_arr = Arr)
{
char *p_elem = p_arr;
for(int i=0;i
AnswerRe: Dummies Question: char[] to byte[] Howto? Pin
ODS21-Sep-04 1:10
ODS21-Sep-04 1:10 
GeneralProblem with Timer Pin
Jo Develper20-Sep-04 20:24
Jo Develper20-Sep-04 20:24 
GeneralRe: Problem with Timer Pin
leppie20-Sep-04 21:20
leppie20-Sep-04 21:20 
GeneralRe: Problem with Timer Pin
Jo Develper21-Sep-04 1:37
Jo Develper21-Sep-04 1:37 
GeneralRe: Problem with Timer Pin
Robert Rohde21-Sep-04 5:20
Robert Rohde21-Sep-04 5:20 
GeneralRe: Problem with Timer Pin
Dave Kreskowiak21-Sep-04 6:25
mveDave Kreskowiak21-Sep-04 6:25 
GeneralRe: Problem with Timer Pin
Robert Rohde21-Sep-04 8:44
Robert Rohde21-Sep-04 8:44 
GeneralRe: Problem with Timer Pin
Dave Kreskowiak21-Sep-04 6:30
mveDave Kreskowiak21-Sep-04 6:30 
GeneralRe: Problem with Timer Pin
Jo Develper21-Sep-04 23:05
Jo Develper21-Sep-04 23:05 
GeneralRe: Problem with Timer Pin
Dave Kreskowiak22-Sep-04 11:53
mveDave Kreskowiak22-Sep-04 11:53 
GeneralRe: Problem with Timer Pin
Jo Develper22-Sep-04 20:10
Jo Develper22-Sep-04 20:10 
GeneralMoving Data Between Tiers Pin
shambho20-Sep-04 19:23
shambho20-Sep-04 19:23 
GeneralRe: Moving Data Between Tiers Pin
Christian Graus20-Sep-04 20:00
protectorChristian Graus20-Sep-04 20:00 
GeneralRe: Moving Data Between Tiers Pin
sreejith ss nair20-Sep-04 20:04
sreejith ss nair20-Sep-04 20:04 
GeneralRe: Moving Data Between Tiers Pin
Salil Khedkar20-Sep-04 21:21
Salil Khedkar20-Sep-04 21:21 
GeneralCTS and CLS Pin
sreejith ss nair20-Sep-04 17:36
sreejith ss nair20-Sep-04 17:36 
Generalrunas Pin
cmarmr20-Sep-04 16:57
cmarmr20-Sep-04 16:57 

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.