Click here to Skip to main content
15,888,802 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# login help Pin
cobalt-rose24-Dec-08 1:56
cobalt-rose24-Dec-08 1:56 
GeneralRe: c# login help Pin
RobScripta24-Dec-08 3:45
professionalRobScripta24-Dec-08 3:45 
GeneralRe: c# login help Pin
cobalt-rose24-Dec-08 13:05
cobalt-rose24-Dec-08 13:05 
GeneralRe: c# login help Pin
RobScripta24-Dec-08 20:50
professionalRobScripta24-Dec-08 20:50 
QuestionDowngrading ReaderWriterLockSlim UpgradeableReadLock to simple ReadLock Pin
HosamAly19-Dec-08 23:28
HosamAly19-Dec-08 23:28 
AnswerRe: Downgrading ReaderWriterLockSlim UpgradeableReadLock to simple ReadLock Pin
N a v a n e e t h20-Dec-08 0:57
N a v a n e e t h20-Dec-08 0:57 
GeneralRe: Downgrading ReaderWriterLockSlim UpgradeableReadLock to simple ReadLock Pin
HosamAly20-Dec-08 2:41
HosamAly20-Dec-08 2:41 
GeneralRe: Downgrading ReaderWriterLockSlim UpgradeableReadLock to simple ReadLock Pin
N a v a n e e t h20-Dec-08 7:32
N a v a n e e t h20-Dec-08 7:32 
Well, the below code will answer it

class Program
{
        static ReaderWriterLockSlim rwSlim = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion);
        static void Main(string[] args) {
            // entering upgradable read lock
            rwSlim.EnterUpgradeableReadLock();
            Console.WriteLine(rwSlim.IsUpgradeableReadLockHeld);

            // downgrading to readlock. Now you are in read lock
            rwSlim.EnterReadLock();
            Console.WriteLine(rwSlim.IsReadLockHeld);

            // exiting from upgradable lock
            rwSlim.ExitUpgradeableReadLock();
            Console.WriteLine(rwSlim.IsUpgradeableReadLockHeld);

            // exiting read lock
            rwSlim.ExitReadLock();
            Console.WriteLine(rwSlim.IsReadLockHeld);
        }
}
You need to supply LockRecursionPolicy.SupportsRecursion to indicate that you need recursive locks.


Questionhow to write the values in textbox to xml format.. Pin
samsonx19-Dec-08 22:26
samsonx19-Dec-08 22:26 
AnswerRe: how to write the values in textbox to xml format.. Pin
Eddy Vluggen19-Dec-08 22:33
professionalEddy Vluggen19-Dec-08 22:33 
GeneralRe: how to write the values in textbox to xml format.. Pin
samsonx19-Dec-08 22:49
samsonx19-Dec-08 22:49 
GeneralRe: how to write the values in textbox to xml format.. Pin
Eddy Vluggen19-Dec-08 23:01
professionalEddy Vluggen19-Dec-08 23:01 
GeneralRe: how to write the values in textbox to xml format.. Pin
samsonx19-Dec-08 23:14
samsonx19-Dec-08 23:14 
GeneralRe: how to write the values in textbox to xml format.. Pin
samsonx19-Dec-08 23:29
samsonx19-Dec-08 23:29 
GeneralRe: how to write the values in textbox to xml format.. Pin
Christian Graus19-Dec-08 23:32
protectorChristian Graus19-Dec-08 23:32 
GeneralRe: how to write the values in textbox to xml format.. Pin
Christian Graus19-Dec-08 23:31
protectorChristian Graus19-Dec-08 23:31 
GeneralRe: how to write the values in textbox to xml format.. Pin
Eddy Vluggen20-Dec-08 1:57
professionalEddy Vluggen20-Dec-08 1:57 
QuestionClick Event Pin
hotthoughtguy19-Dec-08 22:19
hotthoughtguy19-Dec-08 22:19 
AnswerRe: Click Event Pin
Eddy Vluggen19-Dec-08 22:44
professionalEddy Vluggen19-Dec-08 22:44 
AnswerRe: Click Event Pin
Lev Danielyan19-Dec-08 22:46
Lev Danielyan19-Dec-08 22:46 
AnswerRe: Click Event Pin
Christian Graus19-Dec-08 23:34
protectorChristian Graus19-Dec-08 23:34 
QuestionImplementation of logarithms in asp.net Pin
elci19-Dec-08 21:51
elci19-Dec-08 21:51 
AnswerRe: Implementation of logarithms in asp.net Pin
Brij19-Dec-08 22:16
mentorBrij19-Dec-08 22:16 
GeneralRe: Implementation of logarithms Pin
elci19-Dec-08 22:21
elci19-Dec-08 22:21 
GeneralRe: Implementation of logarithms Pin
Lev Danielyan19-Dec-08 22:51
Lev Danielyan19-Dec-08 22:51 

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.