Click here to Skip to main content
15,904,416 members
Home / Discussions / C#
   

C#

 
GeneralRe: Emergency , need help Pin
Developer6116-Aug-07 4:18
Developer6116-Aug-07 4:18 
GeneralRe: Emergency , need help Pin
Pete O'Hanlon6-Aug-07 21:44
mvePete O'Hanlon6-Aug-07 21:44 
GeneralRe: Emergency , need help Pin
Developer6117-Aug-07 0:19
Developer6117-Aug-07 0:19 
GeneralRe: Emergency , need help Pin
Pete O'Hanlon7-Aug-07 1:35
mvePete O'Hanlon7-Aug-07 1:35 
GeneralRe: Emergency , need help Pin
Developer6117-Aug-07 2:08
Developer6117-Aug-07 2:08 
GeneralRe: Emergency , need help Pin
Pete O'Hanlon7-Aug-07 2:23
mvePete O'Hanlon7-Aug-07 2:23 
QuestionFDML Pin
razanabanu6-Aug-07 0:35
razanabanu6-Aug-07 0:35 
AnswerRe: FDML Pin
leppie6-Aug-07 0:41
leppie6-Aug-07 0:41 
GeneralRe: FDML Pin
Vasudevan Deepak Kumar6-Aug-07 0:56
Vasudevan Deepak Kumar6-Aug-07 0:56 
AnswerRe: FDML Pin
Vasudevan Deepak Kumar6-Aug-07 0:57
Vasudevan Deepak Kumar6-Aug-07 0:57 
AnswerRe: FDML Pin
Nouman Bhatti6-Aug-07 1:59
Nouman Bhatti6-Aug-07 1:59 
Questionsetting a default value for dropdown Pin
Ni Na5-Aug-07 23:58
Ni Na5-Aug-07 23:58 
AnswerRe: setting a default value for dropdown Pin
Luc Pattyn6-Aug-07 0:08
sitebuilderLuc Pattyn6-Aug-07 0:08 
GeneralRe: setting a default value for dropdown Pin
Ni Na6-Aug-07 1:59
Ni Na6-Aug-07 1:59 
QuestionHow to retreive RAM size Pin
Phanindra Kumar5-Aug-07 23:31
Phanindra Kumar5-Aug-07 23:31 
AnswerRe: How to retreive RAM size Pin
Luc Pattyn5-Aug-07 23:45
sitebuilderLuc Pattyn5-Aug-07 23:45 
AnswerRe: How to retreive RAM size Pin
Vasudevan Deepak Kumar6-Aug-07 0:58
Vasudevan Deepak Kumar6-Aug-07 0:58 
AnswerRe: How to retreive RAM size Pin
Nouman Bhatti6-Aug-07 2:07
Nouman Bhatti6-Aug-07 2:07 
Questionis a File Read Only. Pin
Saqib Mehmood5-Aug-07 22:32
Saqib Mehmood5-Aug-07 22:32 
AnswerRe: is a File Read Only. Pin
N a v a n e e t h5-Aug-07 22:53
N a v a n e e t h5-Aug-07 22:53 
AnswerRe: is a File Read Only. Pin
Nouman Bhatti6-Aug-07 2:05
Nouman Bhatti6-Aug-07 2:05 
Questioninternal and internal protected Pin
Sonia Gupta5-Aug-07 22:25
Sonia Gupta5-Aug-07 22:25 
AnswerRe: internal and internal protected Pin
N a v a n e e t h5-Aug-07 22:46
N a v a n e e t h5-Aug-07 22:46 
Sonia Gupta wrote:
internal Access is limited to the current assembly.


Correct

Sonia Gupta wrote:
somebody please provide any example that elaborates how to use these things.


Assume you have two class file, class1 and class2. Your class1 looks like

internal class class1
{
}

class2 looks like

class class2
{
   public class2()
   {
       class1 c1 = new class1(); //Will produce error
   }
}


This is how internal works. You won't be able to get reference to internal class from other assembly. Try making the internal to public to get access.


Sonia Gupta wrote:
protected internal Access is limited to the current assembly or types derived from the containing class.


Protected keyword is mostly used in internal classes ( class inside other one ). It can be accessed by containing type and any type that inherits containing type. So protected internal would be protected level + internal level. I am not sure regarding this, check with online documentations.


GeneralRe: internal and internal protected Pin
Sonia Gupta5-Aug-07 23:00
Sonia Gupta5-Aug-07 23:00 
GeneralRe: internal and internal protected Pin
N a v a n e e t h6-Aug-07 1:13
N a v a n e e t h6-Aug-07 1:13 

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.