Click here to Skip to main content
15,911,139 members
Home / Discussions / C#
   

C#

 
QuestionHow can I check if a mail exists or not? Pin
m.rastgar28-Jan-06 5:49
m.rastgar28-Jan-06 5:49 
AnswerRe: How can I check if a mail exists or not? Pin
Guffa28-Jan-06 12:02
Guffa28-Jan-06 12:02 
AnswerRe: How can I check if a mail exists or not? Pin
tarasn29-Jan-06 21:09
tarasn29-Jan-06 21:09 
AnswerRe: How can I check if a mail exists or not? Pin
Ista30-Jan-06 2:47
Ista30-Jan-06 2:47 
QuestionDefining nested namespace Pin
Ravi Bhavnani28-Jan-06 5:12
professionalRavi Bhavnani28-Jan-06 5:12 
AnswerRe: Defining nested namespace Pin
Guffa28-Jan-06 5:36
Guffa28-Jan-06 5:36 
GeneralRe: Defining nested namespace Pin
Ravi Bhavnani28-Jan-06 5:58
professionalRavi Bhavnani28-Jan-06 5:58 
Questionnewbie: do you ever define a class within a class ( Class A { Class B {} })? Pin
LuluSailor28-Jan-06 5:11
LuluSailor28-Jan-06 5:11 
Do you, or is it bad practice to do this sort of thing: Class A { Class B {} } ? I have never seen any of the book examples show that you ever would do this.

Here is the example I was working on.... the first class Tester code (not commented out) does not compile (error: The name Temperature does not exist in the current context). But below the commented out class Tester code will work because I removed the Values class. Is there a way to get it to work without removing the Values class. ( Please keep in mind, some of this might not be a very practicle example.... i.e. it really does not make sense to have the Values class in the first place!)

*/
using System;
using System.Collections.Generic;
using System.Text;

namespace EnumFreezingInRun
{
// this gives error "The name Temperature does not exist in the current context"
class Tester
{
class Values
{
enum Temperatures
{
WickedCold = 0,
FreezingPoint = 32,
}
}
public void Run()
{

Console.WriteLine("Freezing is: {0}", (int)Temperatures.FreezingPoint);
Console.WriteLine("Wicked cold is: {0}", Temperatures.WickedCold);
}

static void Main()
{
Tester t = new Tester();
t.Run();
}
}



// This does work!
//class Tester
//{
// enum Temperatures
// {
// WickedCold = 0,
// FreezingPoint = 32,
// }
// public void Run()
// {

// Console.WriteLine("Freezing is: {0}", (int)Temperatures.FreezingPoint);
// Console.WriteLine("Wicked cold is: {0}", Temperatures.WickedCold);
// }

// static void Main()
// {
// Tester t = new Tester();
// t.Run();
// }
//}
}

AnswerRe: newbie: do you ever define a class within a class ( Class A { Class B {} })? Pin
Colin Angus Mackay28-Jan-06 5:48
Colin Angus Mackay28-Jan-06 5:48 
GeneralRe: newbie: do you ever define a class within a class ( Class A { Class B {} })? Pin
LuluSailor28-Jan-06 6:21
LuluSailor28-Jan-06 6:21 
AnswerRe: newbie: do you ever define a class within a class ( Class A { Class B {} })? Pin
Curtis Schlak.28-Jan-06 7:38
Curtis Schlak.28-Jan-06 7:38 
AnswerRe: newbie: do you ever define a class within a class ( Class A { Class B {} })? Pin
Shann28-Jan-06 10:23
Shann28-Jan-06 10:23 
QuestionClass using library, when changes are made still uses old library Pin
kourvoisier28-Jan-06 4:01
kourvoisier28-Jan-06 4:01 
AnswerRe: Class using library, when changes are made still uses old library Pin
Ravi Bhavnani28-Jan-06 4:54
professionalRavi Bhavnani28-Jan-06 4:54 
GeneralRe: Class using library, when changes are made still uses old library Pin
kourvoisier28-Jan-06 5:00
kourvoisier28-Jan-06 5:00 
GeneralRe: Class using library, when changes are made still uses old library Pin
Ravi Bhavnani28-Jan-06 5:04
professionalRavi Bhavnani28-Jan-06 5:04 
AnswerRe: Class using library, when changes are made still uses old library Pin
S. Senthil Kumar28-Jan-06 9:02
S. Senthil Kumar28-Jan-06 9:02 
GeneralRe: Class using library, when changes are made still uses old library Pin
kourvoisier28-Jan-06 11:30
kourvoisier28-Jan-06 11:30 
QuestionClasses for hard disk Pin
sammysoft28-Jan-06 4:00
sammysoft28-Jan-06 4:00 
AnswerRe: Classes for hard disk Pin
Ravi Bhavnani28-Jan-06 5:13
professionalRavi Bhavnani28-Jan-06 5:13 
AnswerRe: Classes for hard disk Pin
SoTTo28-Jan-06 5:23
SoTTo28-Jan-06 5:23 
Questionapp+modem Pin
Kola Sokol28-Jan-06 1:57
Kola Sokol28-Jan-06 1:57 
Questionhow to make setup project+databse(sql server) please urgent Pin
sa_keles28-Jan-06 1:14
sa_keles28-Jan-06 1:14 
AnswerRe: how to make setup project+databse(sql server) please urgent Pin
sa_keles29-Jan-06 0:25
sa_keles29-Jan-06 0:25 
QuestionRecording with Sound Recorder Pin
freshonlineMax27-Jan-06 23:28
freshonlineMax27-Jan-06 23:28 

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.