Click here to Skip to main content
15,913,685 members
Home / Discussions / C#
   

C#

 
GeneralRe: Two basic questions about reflection Pin
George_George1-Jun-08 18:35
George_George1-Jun-08 18:35 
GeneralRe: Two basic questions about reflection Pin
PIEBALDconsult1-Jun-08 19:20
mvePIEBALDconsult1-Jun-08 19:20 
GeneralRe: Two basic questions about reflection Pin
George_George1-Jun-08 19:42
George_George1-Jun-08 19:42 
GeneralRe: Two basic questions about reflection Pin
Scott Dorman2-Jun-08 4:37
professionalScott Dorman2-Jun-08 4:37 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 2:32
George_George3-Jun-08 2:32 
GeneralRe: Two basic questions about reflection Pin
Scott Dorman3-Jun-08 2:43
professionalScott Dorman3-Jun-08 2:43 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 3:05
George_George3-Jun-08 3:05 
GeneralRe: Two basic questions about reflection Pin
Scott Dorman3-Jun-08 3:15
professionalScott Dorman3-Jun-08 3:15 
George_George wrote:
By just specifying BindingFlags.Instance you are effectively saying get me any instance field that is neither public nor non-public" -- where do you find this point? From MSDN I can not find out. Could you post a link about where you find the statemen please? I want to learn more.


There really isn't a direct link for this. It comes from reading the MSDN documentation (more correctly, reading "between the lines") and experience.

George_George wrote:
I think CAS does not apply to my sample, and also "Outside the current assembly" also does not applies to my sample. Correct?


Correct. From your other post, CAS doesn't really apply; nor does "outside the current assembly".

George_George wrote:
What members are neither public nor non-public? Interested to know.


There really aren't any. (That's why I had the Smile | :) ). Access modifiers can be broken down like this:

Public, meaning is "access not limited".
Protected, meaning "access limited to the containing class or types derived from the containing class".
Internal, meaning "access limited to this program".
Protected internal (which is protected or internal), meaning "access limited to this program or types derived from the containing class".
Private, meaning "access limited to the containing type".

Scott.

—In just two days, tomorrow will be yesterday.
—Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai

[Forum Guidelines] [Articles] [Blog]

GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 15:33
George_George3-Jun-08 15:33 
GeneralRe: Two basic questions about reflection Pin
Scott Dorman3-Jun-08 16:36
professionalScott Dorman3-Jun-08 16:36 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 17:27
George_George3-Jun-08 17:27 
GeneralRe: Two basic questions about reflection Pin
PIEBALDconsult2-Jun-08 6:29
mvePIEBALDconsult2-Jun-08 6:29 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 2:34
George_George3-Jun-08 2:34 
GeneralRe: Two basic questions about reflection Pin
PIEBALDconsult3-Jun-08 18:01
mvePIEBALDconsult3-Jun-08 18:01 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 18:23
George_George3-Jun-08 18:23 
GeneralRe: Two basic questions about reflection Pin
PIEBALDconsult3-Jun-08 18:46
mvePIEBALDconsult3-Jun-08 18:46 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 18:52
George_George3-Jun-08 18:52 
GeneralRe: Two basic questions about reflection Pin
PIEBALDconsult3-Jun-08 19:06
mvePIEBALDconsult3-Jun-08 19:06 
GeneralRe: Two basic questions about reflection Pin
George_George3-Jun-08 21:35
George_George3-Jun-08 21:35 
Questionhow to use event to re-write this code segment? Pin
George_George1-Jun-08 15:11
George_George1-Jun-08 15:11 
AnswerRe: how to use event to re-write this code segment? Pin
Christian Graus1-Jun-08 15:52
protectorChristian Graus1-Jun-08 15:52 
GeneralRe: how to use event to re-write this code segment? Pin
George_George1-Jun-08 16:24
George_George1-Jun-08 16:24 
GeneralRe: how to use event to re-write this code segment? Pin
Christian Graus1-Jun-08 16:39
protectorChristian Graus1-Jun-08 16:39 
GeneralRe: how to use event to re-write this code segment? Pin
George_George1-Jun-08 17:06
George_George1-Jun-08 17:06 
GeneralRe: how to use event to re-write this code segment? Pin
Christian Graus1-Jun-08 17:33
protectorChristian Graus1-Jun-08 17:33 

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.