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

C#

 
AnswerRe: Windows Forms Pin
darkcalin26-Mar-07 20:00
darkcalin26-Mar-07 20:00 
GeneralRe: Windows Forms Pin
7126-Mar-07 20:50
7126-Mar-07 20:50 
GeneralRe: Windows Forms Pin
7126-Mar-07 20:51
7126-Mar-07 20:51 
AnswerRe: Windows Forms Pin
m@u26-Mar-07 21:30
m@u26-Mar-07 21:30 
GeneralRe: Windows Forms Pin
7127-Mar-07 3:33
7127-Mar-07 3:33 
Questionwhat is property Pin
Bala subramanyam M26-Mar-07 18:29
Bala subramanyam M26-Mar-07 18:29 
AnswerRe: what is property Pin
rah_sin26-Mar-07 18:51
professionalrah_sin26-Mar-07 18:51 
AnswerRe: what is property Pin
originSH26-Mar-07 23:35
originSH26-Mar-07 23:35 
Properties control access to fields within a class:

//Field
private int number = 0;

//Property
public int Number
{
get { return this.number; }
set { this.number = value; }
}

this allows you to control wether a field can be written to or read from and can perform processing if needed.


A method contains code:

private string SomeMethod(strin input)
{
string output = input + "123";
return output;
}
QuestionC# COM application instance issue Pin
r6yamaha26-Mar-07 17:42
r6yamaha26-Mar-07 17:42 
AnswerRe: C# COM application instance issue Pin
Brady Kelly26-Mar-07 23:12
Brady Kelly26-Mar-07 23:12 
GeneralRe: C# COM application instance issue Pin
r6yamaha27-Mar-07 5:42
r6yamaha27-Mar-07 5:42 
GeneralRe: C# COM application instance issue Pin
Brady Kelly27-Mar-07 5:55
Brady Kelly27-Mar-07 5:55 
GeneralRe: C# COM application instance issue Pin
r6yamaha27-Mar-07 7:30
r6yamaha27-Mar-07 7:30 
Questiondatabase connection without a datasource Pin
Keshav V. Kamat26-Mar-07 17:39
Keshav V. Kamat26-Mar-07 17:39 
AnswerRe: database connection without a datasource Pin
Christian Graus26-Mar-07 17:44
protectorChristian Graus26-Mar-07 17:44 
AnswerRe: database connection without a datasource Pin
Vikram A Punathambekar26-Mar-07 19:56
Vikram A Punathambekar26-Mar-07 19:56 
AnswerRe: database connection without a datasource Pin
Brady Kelly26-Mar-07 23:15
Brady Kelly26-Mar-07 23:15 
AnswerRe: Dynamically Insert Email Address from DataSet Pin
Christian Graus26-Mar-07 16:40
protectorChristian Graus26-Mar-07 16:40 
QuestionDatabase Connection Issue Pin
dboy22126-Mar-07 15:48
dboy22126-Mar-07 15:48 
AnswerRe: Database Connection Issue Pin
rah_sin26-Mar-07 18:17
professionalrah_sin26-Mar-07 18:17 
GeneralRe: Database Connection Issue Pin
dboy22127-Mar-07 2:04
dboy22127-Mar-07 2:04 
QuestionProblem of hierachical data in datagrid [modified] Pin
phantanagu26-Mar-07 15:42
phantanagu26-Mar-07 15:42 
QuestionTwo methods one output version 2.0 Pin
JMOdom26-Mar-07 15:12
JMOdom26-Mar-07 15:12 
AnswerRe: Two methods one output version 2.0 Pin
Christian Graus26-Mar-07 15:26
protectorChristian Graus26-Mar-07 15:26 
GeneralRe: Two methods one output version 2.0 Pin
JMOdom26-Mar-07 16:53
JMOdom26-Mar-07 16:53 

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.