Click here to Skip to main content
15,895,142 members
Home / Discussions / C#
   

C#

 
QuestionPlay Live Remote IP Cam Video in Windows application Player using C#.Net Pin
vasanth arivali20-Jul-09 19:02
vasanth arivali20-Jul-09 19:02 
AnswerRe: Play Live Remote IP Cam Video in Windows application Player using C#.Net Pin
Jimmanuel21-Jul-09 1:04
Jimmanuel21-Jul-09 1:04 
GeneralType conversion Pin
Mycroft Holmes20-Jul-09 16:46
professionalMycroft Holmes20-Jul-09 16:46 
GeneralRe: Type conversion Pin
harold aptroot20-Jul-09 16:53
harold aptroot20-Jul-09 16:53 
GeneralRe: Type conversion Pin
Mycroft Holmes20-Jul-09 18:11
professionalMycroft Holmes20-Jul-09 18:11 
GeneralRe: Type conversion PinPopular
PIEBALDconsult20-Jul-09 17:10
mvePIEBALDconsult20-Jul-09 17:10 
GeneralRe: Type conversion Pin
Mycroft Holmes20-Jul-09 18:09
professionalMycroft Holmes20-Jul-09 18:09 
GeneralRe: Type conversion Pin
PIEBALDconsult20-Jul-09 19:01
mvePIEBALDconsult20-Jul-09 19:01 
GeneralRe: Type conversion Pin
harold aptroot20-Jul-09 19:06
harold aptroot20-Jul-09 19:06 
GeneralRe: Type conversion Pin
PIEBALDconsult20-Jul-09 19:09
mvePIEBALDconsult20-Jul-09 19:09 
GeneralRe: Type conversion Pin
harold aptroot20-Jul-09 19:24
harold aptroot20-Jul-09 19:24 
QuestionMessage Removed Pin
20-Jul-09 14:19
ImNAM20-Jul-09 14:19 
AnswerRe: Getting Values from List Pin
PIEBALDconsult20-Jul-09 14:21
mvePIEBALDconsult20-Jul-09 14:21 
General[Message Deleted] Pin
ImNAM20-Jul-09 14:23
ImNAM20-Jul-09 14:23 
GeneralRe: Getting Values from List Pin
Christian Graus20-Jul-09 14:24
protectorChristian Graus20-Jul-09 14:24 
AnswerRe: Getting Values from List Pin
Christian Graus20-Jul-09 14:25
protectorChristian Graus20-Jul-09 14:25 
GeneralRe: Getting Values from List Pin
ImNAM20-Jul-09 14:30
ImNAM20-Jul-09 14:30 
GeneralRe: Getting Values from List Pin
Christian Graus20-Jul-09 14:36
protectorChristian Graus20-Jul-09 14:36 
GeneralRe: Getting Values from List Pin
PIEBALDconsult20-Jul-09 16:30
mvePIEBALDconsult20-Jul-09 16:30 
Questionwhat is the equivalent to this c++ code in C#? Pin
Abdulaziz M Zaben20-Jul-09 12:22
Abdulaziz M Zaben20-Jul-09 12:22 
AnswerRe: what is the equivalent to this c++ code in C#? Pin
Luc Pattyn20-Jul-09 12:59
sitebuilderLuc Pattyn20-Jul-09 12:59 
GeneralRe: what is the equivalent to this c++ code in C#? Pin
Abdulaziz M Zaben20-Jul-09 13:16
Abdulaziz M Zaben20-Jul-09 13:16 
GeneralRe: what is the equivalent to this c++ code in C#? Pin
Luc Pattyn20-Jul-09 13:47
sitebuilderLuc Pattyn20-Jul-09 13:47 
This is part of the solution:

public struct image {
    private byte xy;
    private byte color;
    private byte gray;

    public int X {
        get { return xy>>4;}
        sey { xy=(value<<4) | (xy&0xF);}
    }

etc.
}


Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.

modified on Monday, July 20, 2009 8:15 PM

GeneralRe: what is the equivalent to this c++ code in C#? Pin
Adrian Schröder20-Jul-09 20:47
Adrian Schröder20-Jul-09 20:47 
GeneralRe: what is the equivalent to this c++ code in C#? Pin
Luc Pattyn21-Jul-09 2:12
sitebuilderLuc Pattyn21-Jul-09 2:12 

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.