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

C#

 
GeneralRe: int 00....09 Pin
Xmen Real 14-Jul-07 23:18
professional Xmen Real 14-Jul-07 23:18 
GeneralRe: int 00....09 Pin
Paul Conrad15-Jul-07 4:31
professionalPaul Conrad15-Jul-07 4:31 
GeneralRe: int 00....09 Pin
Xmen Real 15-Jul-07 18:39
professional Xmen Real 15-Jul-07 18:39 
GeneralRe: int 00....09 Pin
Paul Conrad15-Jul-07 18:48
professionalPaul Conrad15-Jul-07 18:48 
QuestionFolderBrowserDialog Pin
shubhabratam14-Jul-07 4:33
shubhabratam14-Jul-07 4:33 
AnswerRe: FolderBrowserDialog Pin
Manas Bhardwaj14-Jul-07 4:40
professionalManas Bhardwaj14-Jul-07 4:40 
QuestionMembershipProvider.EncryptPassword Issue Pin
Brendan Vogt14-Jul-07 3:53
Brendan Vogt14-Jul-07 3:53 
AnswerRe: MembershipProvider.EncryptPassword Issue Pin
Mike Dimmick14-Jul-07 7:22
Mike Dimmick14-Jul-07 7:22 
Do you mean that you've written a class derived from MembershipProvider? In your own instance methods, you should simply call EncryptPassword, without qualifying it with the MembershipProvider name (which indicates use of a static method). Optionally, to indicate that you're calling a method in a base class, you qualify it with base. This is required if your class overrides the base class method if you want the base class method to be called rather than your own.

Otherwise, EncryptPassword is a protected instance method, so it can only be called by instance methods of MembershipProvider and instance methods of classes derived from MembershipProvider. Since you cannot call it from other locations, IntelliSense does not show it in the list of available methods. If you type the name of a class followed by a dot, IntelliSense shows you a list of all public, static fields, methods, events and properties of that class (and internal static ones if the code you're working on is a member of the same assembly).



Stability. What an interesting concept. -- Chris Maunder

QuestionGet and set properties Pin
prabhu dot net14-Jul-07 3:26
prabhu dot net14-Jul-07 3:26 
AnswerRe: Get and set properties Pin
Luc Pattyn14-Jul-07 3:39
sitebuilderLuc Pattyn14-Jul-07 3:39 
AnswerRe: Get and set properties Pin
Urs Enzler14-Jul-07 4:41
Urs Enzler14-Jul-07 4:41 
GeneralRe: Get and set properties Pin
User 665814-Jul-07 7:07
User 665814-Jul-07 7:07 
GeneralRe: Get and set properties Pin
Mike Dimmick14-Jul-07 7:38
Mike Dimmick14-Jul-07 7:38 
AnswerRe: Get and set properties Pin
Guffa14-Jul-07 5:40
Guffa14-Jul-07 5:40 
Questionevents in interface Pin
Maddie from Dartford14-Jul-07 2:06
Maddie from Dartford14-Jul-07 2:06 
AnswerRe: events in interface Pin
mav.northwind14-Jul-07 2:37
mav.northwind14-Jul-07 2:37 
QuestionDifferentiating between different hotkeys in c# Pin
Luke Dyer14-Jul-07 1:55
Luke Dyer14-Jul-07 1:55 
AnswerRe: Differentiating between different hotkeys in c# Pin
Luc Pattyn14-Jul-07 2:30
sitebuilderLuc Pattyn14-Jul-07 2:30 
QuestionKeystroke events on a Form? Pin
kbalias14-Jul-07 1:38
kbalias14-Jul-07 1:38 
AnswerRe: Keystroke events on a Form? Pin
Luc Pattyn14-Jul-07 2:32
sitebuilderLuc Pattyn14-Jul-07 2:32 
Questionkey sensitive Problem Pin
ytubis14-Jul-07 0:40
ytubis14-Jul-07 0:40 
AnswerRe: key sensitive Problem Pin
kubben14-Jul-07 1:17
kubben14-Jul-07 1:17 
AnswerRe: key sensitive Problem Pin
Luc Pattyn14-Jul-07 2:35
sitebuilderLuc Pattyn14-Jul-07 2:35 
QuestionC# Transelation :blush: Pin
Muammar©13-Jul-07 23:38
Muammar©13-Jul-07 23:38 
AnswerRe: C# Transelation :blush: Pin
Guffa13-Jul-07 23:57
Guffa13-Jul-07 23: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.