Click here to Skip to main content
15,898,036 members
Home / Discussions / C#
   

C#

 
AnswerRe: show a webcam photo Pin
Nematjon Rahmanov15-Feb-10 0:33
Nematjon Rahmanov15-Feb-10 0:33 
GeneralRe: show a webcam photo Pin
naghoumeh1415-Feb-10 0:59
naghoumeh1415-Feb-10 0:59 
GeneralRe: show a webcam photo Pin
Nematjon Rahmanov15-Feb-10 1:31
Nematjon Rahmanov15-Feb-10 1:31 
Question[NOT SOLVED ANYMORE] Renaming fields / Controlling access to fields [modified] Pin
blackblizzard15-Feb-10 0:10
blackblizzard15-Feb-10 0:10 
AnswerRe: Renaming fields / Controlling access to fields Pin
Luc Pattyn15-Feb-10 0:32
sitebuilderLuc Pattyn15-Feb-10 0:32 
GeneralRe: Renaming fields / Controlling access to fields Pin
blackblizzard15-Feb-10 1:15
blackblizzard15-Feb-10 1:15 
QuestionThe suggested solution doesn't work: help, please Pin
blackblizzard22-Feb-10 3:23
blackblizzard22-Feb-10 3:23 
AnswerRe: The suggested solution doesn't work: help, please Pin
Luc Pattyn22-Feb-10 10:49
sitebuilderLuc Pattyn22-Feb-10 10:49 
blackblizzard wrote:
Is it possible at all?

I don't know the answer to your fundamental question.

I can tell you the compiler generates some code for auto-properties, which Reflector decompiles like so:
[CompilerGenerated]
public void set_x(int value)
{
    this.<x>k__BackingField = value;
}
[CompilerGenerated]
public int get_x()
{
    return this.<x>k__BackingField;
}


where the backing variable has an identifier that would be invalid when entered in the source code. Not sure whether reflection code would accept such identifier...

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.
All Toronto weekends should be extremely wet until we get it automated in regular forums, not just QA.

GeneralRe: The suggested solution doesn't work: help, please Pin
blackblizzard22-Feb-10 22:38
blackblizzard22-Feb-10 22:38 
GeneralRe: The suggested solution doesn't work: help, please Pin
blackblizzard25-Feb-10 22:03
blackblizzard25-Feb-10 22:03 
QuestionComboBox Column Pin
spankyleo12314-Feb-10 23:49
spankyleo12314-Feb-10 23:49 
AnswerRe: ComboBox Column Pin
Abhinav S15-Feb-10 0:52
Abhinav S15-Feb-10 0:52 
GeneralRe: ComboBox Column Pin
spankyleo12315-Feb-10 1:33
spankyleo12315-Feb-10 1:33 
GeneralRe: ComboBox Column Pin
Abhinav S15-Feb-10 2:36
Abhinav S15-Feb-10 2:36 
GeneralRe: ComboBox Column Pin
spankyleo12315-Feb-10 3:26
spankyleo12315-Feb-10 3:26 
GeneralRe: ComboBox Column Pin
Abhinav S15-Feb-10 6:53
Abhinav S15-Feb-10 6:53 
QuestionWhich is the best printing in ASP.NET Pin
sharad Pyakurel14-Feb-10 23:41
sharad Pyakurel14-Feb-10 23:41 
AnswerRe: Which is the best printing in ASP.NET Pin
DaveAuld15-Feb-10 4:44
professionalDaveAuld15-Feb-10 4:44 
QuestionProcess Exit problem ! Pin
Nematjon Rahmanov14-Feb-10 23:01
Nematjon Rahmanov14-Feb-10 23:01 
AnswerRe: Process Exit problem ! Pin
Luc Pattyn14-Feb-10 23:10
sitebuilderLuc Pattyn14-Feb-10 23:10 
QuestionRe: Process Exit problem ! Pin
Nematjon Rahmanov14-Feb-10 23:32
Nematjon Rahmanov14-Feb-10 23:32 
AnswerRe: Process Exit problem ! Pin
Luc Pattyn14-Feb-10 23:43
sitebuilderLuc Pattyn14-Feb-10 23:43 
QuestionRe: Process Exit problem ! Pin
Nematjon Rahmanov15-Feb-10 0:17
Nematjon Rahmanov15-Feb-10 0:17 
AnswerRe: Process Exit problem ! Pin
Luc Pattyn15-Feb-10 0:24
sitebuilderLuc Pattyn15-Feb-10 0:24 
AnswerRe: Process Exit problem ! Pin
#realJSOP15-Feb-10 1:45
professional#realJSOP15-Feb-10 1:45 

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.