Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
AnswerLeppie's interesting suggestion to use 'Anonymous Classes' ... Re: Tuples in Functions Pin
BillWoodruff18-Aug-12 15:49
professionalBillWoodruff18-Aug-12 15:49 
GeneralRe: Leppie's interesting suggestion to use 'Anonymous Classes' ... Re: Tuples in Functions Pin
BobJanova20-Aug-12 1:00
BobJanova20-Aug-12 1:00 
QuestionTrying to Obtain Two (2) Values from Function Pin
computerpublic16-Aug-12 21:53
computerpublic16-Aug-12 21:53 
AnswerRe: Trying to Obtain Two (2) Values from Function Pin
DaveyM6916-Aug-12 22:36
professionalDaveyM6916-Aug-12 22:36 
GeneralRe: Trying to Obtain Two (2) Values from Function Pin
BobJanova16-Aug-12 22:54
BobJanova16-Aug-12 22:54 
GeneralRe: Trying to Obtain Two (2) Values from Function Pin
Keith Barrow17-Aug-12 2:12
professionalKeith Barrow17-Aug-12 2:12 
AnswerRe: Trying to Obtain Two (2) Values from Function Pin
Sangramsingh Pawar17-Aug-12 0:43
Sangramsingh Pawar17-Aug-12 0:43 
AnswerRe: Trying to Obtain Two (2) Values from Function Pin
V.17-Aug-12 3:16
professionalV.17-Aug-12 3:16 
the quick and dirty way:


C#
public static Double[] Test(Double Val1, Double Val2, Double Val3)
        {

            Double Test_Val = Val1 + Val2 + Val3;
            Double Second_Test = Test_Val % 2;
            double [] arr = { Test_Val, Second_Test };
            return arr;
            //return Second_Test;//I need to return this value also(two values, NOT ONE.)
        }


Just to show you, you can return virtually anything, including Lists, Dictionaries, self made object (like the Pair example)
V.

AnswerRe: Trying to Obtain Two (2) Values from Function Pin
Kuthuparakkal17-Aug-12 16:05
Kuthuparakkal17-Aug-12 16:05 
QuestionHow to insert,update and edit data in datagridview window form Pin
ope4sure116-Aug-12 19:54
ope4sure116-Aug-12 19:54 
AnswerRe: How to insert,update and edit data in datagridview window form Pin
Calla16-Aug-12 20:53
Calla16-Aug-12 20:53 
GeneralRe: How to insert,update and edit data in datagridview window form Pin
Dave Kreskowiak17-Aug-12 3:37
mveDave Kreskowiak17-Aug-12 3:37 
AnswerRe: How to insert,update and edit data in datagridview window form Pin
uspatel17-Aug-12 21:52
professionaluspatel17-Aug-12 21:52 
QuestionIs it possible to read windows password from registry? Pin
Mostafa M.A16-Aug-12 15:09
Mostafa M.A16-Aug-12 15:09 
AnswerRe: Is it possible to read windows password from registry? Pin
Eddy Vluggen16-Aug-12 15:31
professionalEddy Vluggen16-Aug-12 15:31 
GeneralRe: Is it possible to read windows password from registry? Pin
Mostafa M.A16-Aug-12 16:20
Mostafa M.A16-Aug-12 16:20 
AnswerRe: Is it possible to read windows password from registry? Pin
Eddy Vluggen16-Aug-12 16:31
professionalEddy Vluggen16-Aug-12 16:31 
AnswerMessage Closed Pin
16-Aug-12 18:35
Kuthuparakkal16-Aug-12 18:35 
GeneralRe: Is it possible to read windows password from registry? Pin
Eddy Vluggen16-Aug-12 23:35
professionalEddy Vluggen16-Aug-12 23:35 
GeneralMessage Closed Pin
17-Aug-12 2:12
Kuthuparakkal17-Aug-12 2:12 
NewsRe: Is it possible to read windows password from registry? Pin
Eddy Vluggen17-Aug-12 2:49
professionalEddy Vluggen17-Aug-12 2:49 
GeneralRe: Is it possible to read windows password from registry? Pin
Dave Kreskowiak17-Aug-12 3:36
mveDave Kreskowiak17-Aug-12 3:36 
AnswerRe: Is it possible to read windows password from registry? Pin
harold aptroot17-Aug-12 3:41
harold aptroot17-Aug-12 3:41 
QuestionWhat is this C# console compile error and how do I fix it? Pin
Xarzu16-Aug-12 11:03
Xarzu16-Aug-12 11:03 
AnswerRe: What is this C# console compile error and how do I fix it? Pin
jschell16-Aug-12 11:05
jschell16-Aug-12 11:05 

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.