Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
QuestionSession Variables IIS Pin
oskardiazdeleon14-Jul-06 11:01
oskardiazdeleon14-Jul-06 11:01 
AnswerRe: Session Variables IIS Pin
oskardiazdeleon23-Jul-06 12:59
oskardiazdeleon23-Jul-06 12:59 
QuestionIssues with SetNotificationPositions Pin
flend14-Jul-06 10:03
flend14-Jul-06 10:03 
Questionhow to get largest element from list Pin
_ra14-Jul-06 9:35
_ra14-Jul-06 9:35 
AnswerWrite a comparer for some object Pin
Ennis Ray Lynch, Jr.14-Jul-06 9:40
Ennis Ray Lynch, Jr.14-Jul-06 9:40 
GeneralRe: Write a comparer for some object Pin
_ra14-Jul-06 10:28
_ra14-Jul-06 10:28 
AnswerRe: Write a comparer for some object Pin
Ravi Bhavnani14-Jul-06 10:38
professionalRavi Bhavnani14-Jul-06 10:38 
AnswerRe: how to get largest element from list Pin
BoneSoft14-Jul-06 12:01
BoneSoft14-Jul-06 12:01 
public class SomeObject {
    private int i;
    public Int Value {
        get { return i; }
        set { i = value; }
    }
}

class Thingy {
    List list1 = null;
    // blah blah blah

    private SomeObject GetBiggest() {
        SomeObject biggest = null;
        foreach (SomeObject so in list1) {
            if (biggest == null || biggest.Value < so.Value) {
                biggest = so;
            }
        }
        return biggest;
    }
}




Try code model generation tools at BoneSoft.com.
QuestionHow to run any custom application from code depending upon file extension? Pin
Waqas Nasir14-Jul-06 6:54
Waqas Nasir14-Jul-06 6:54 
AnswerRe: How to run any custom application from code depending upon file extension? Pin
Andrew Lygin14-Jul-06 7:03
Andrew Lygin14-Jul-06 7:03 
GeneralRe: How to run any custom application from code depending upon file extension? Pin
Waqas Nasir14-Jul-06 7:12
Waqas Nasir14-Jul-06 7:12 
GeneralRe: How to run any custom application from code depending upon file extension? Pin
Ennis Ray Lynch, Jr.14-Jul-06 7:15
Ennis Ray Lynch, Jr.14-Jul-06 7:15 
GeneralRe: How to run any custom application from code depending upon file extension? Pin
Waqas Nasir14-Jul-06 7:20
Waqas Nasir14-Jul-06 7:20 
AnswerSend it to the shell Pin
Ennis Ray Lynch, Jr.14-Jul-06 7:04
Ennis Ray Lynch, Jr.14-Jul-06 7:04 
QuestionIdeas on how to stream audio [modified] Pin
BambooMoon14-Jul-06 6:52
BambooMoon14-Jul-06 6:52 
QuestionDataset output to Label [modified] Pin
NiPsTeRs14-Jul-06 6:37
NiPsTeRs14-Jul-06 6:37 
AnswerRe: Dataset output to Label Pin
Not Active14-Jul-06 6:56
mentorNot Active14-Jul-06 6:56 
QuestionAnother byte to int question Pin
Tom Wright14-Jul-06 6:29
Tom Wright14-Jul-06 6:29 
GeneralRe: Another byte to int question Pin
Andrew Lygin14-Jul-06 7:20
Andrew Lygin14-Jul-06 7:20 
AnswerWhat is the data in the byte array Pin
Ennis Ray Lynch, Jr.14-Jul-06 7:23
Ennis Ray Lynch, Jr.14-Jul-06 7:23 
GeneralRe: What is the data in the byte array Pin
stancrm14-Jul-06 8:53
stancrm14-Jul-06 8:53 
GeneralI figured Pin
Ennis Ray Lynch, Jr.14-Jul-06 9:22
Ennis Ray Lynch, Jr.14-Jul-06 9:22 
GeneralRe: What is the data in the byte array Pin
Tom Wright7-Aug-06 11:16
Tom Wright7-Aug-06 11:16 
Questionstring building Pin
spin vector14-Jul-06 6:20
spin vector14-Jul-06 6:20 
AnswerRe: string building Pin
led mike14-Jul-06 6:24
led mike14-Jul-06 6:24 

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.