Click here to Skip to main content
15,884,473 members
Home / Discussions / C#
   

C#

 
QuestionRefer a class in C# but don't recognized Pin
ernteSKY24-Feb-22 14:38
ernteSKY24-Feb-22 14:38 
AnswerRe: Refer a class in C# but don't recognized Pin
OriginalGriff24-Feb-22 19:35
mveOriginalGriff24-Feb-22 19:35 
QuestionConditional Compiler Symbols Pin
Kevin Marois22-Feb-22 11:00
professionalKevin Marois22-Feb-22 11:00 
AnswerRe: Conditional Compiler Symbols Pin
OriginalGriff22-Feb-22 11:14
mveOriginalGriff22-Feb-22 11:14 
GeneralRe: Conditional Compiler Symbols Pin
Kevin Marois22-Feb-22 12:25
professionalKevin Marois22-Feb-22 12:25 
GeneralRe: Conditional Compiler Symbols Pin
trønderen22-Feb-22 15:03
trønderen22-Feb-22 15:03 
GeneralRe: Conditional Compiler Symbols Pin
OriginalGriff22-Feb-22 20:11
mveOriginalGriff22-Feb-22 20:11 
Questionwhat is the right place to await Task.WhenAll Pin
Kumara Prathipati 202119-Feb-22 15:04
Kumara Prathipati 202119-Feb-22 15:04 
We are calling 2 methods using TPL
both methods return similar data type <string>

Task.WhenAll  returns a string array.

What is the best place to await.

Line 3 pattern
or
Line 4 + 5 pattern
or
Line 6 + 7 pattern

What is the reason for choosing one over the other pattern?
Appreciate any help.
==================================


1. Task<string> t1 = SomeMethod_A_ToCallStoredProcedure();
2. Task<string> t2 = SomeMethod_B_ToCallStoredProcedure();;


3. string[] X = await Task.WhenAll(t1,t2);


4. string[] X = Task.WhenAll(t1,t2)
5. await X;

6. string[] X = Task.WhenAll(t1,t2)
7. X.wait;

AnswerRe: what is the right place to await Task.WhenAll Pin
Richard Deeming24-Feb-22 0:24
mveRichard Deeming24-Feb-22 0:24 
QuestionVisual Studio 2022 Dark Image In Panel Pin
GP66612-Feb-22 7:37
GP66612-Feb-22 7:37 
QuestionRe: Visual Studio 2022 Dark Image In Panel Pin
Eddy Vluggen12-Feb-22 10:45
professionalEddy Vluggen12-Feb-22 10:45 
QuestionSyntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox11-Feb-22 10:46
Richard A Knox11-Feb-22 10:46 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
Mycroft Holmes11-Feb-22 11:05
professionalMycroft Holmes11-Feb-22 11:05 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox12-Feb-22 2:08
Richard A Knox12-Feb-22 2:08 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Mycroft Holmes12-Feb-22 11:16
professionalMycroft Holmes12-Feb-22 11:16 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
Kelly Herald11-Feb-22 11:46
Kelly Herald11-Feb-22 11:46 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox12-Feb-22 2:01
Richard A Knox12-Feb-22 2:01 
QuestionRe: Syntax error: Missing operand after 'Percent' operator. Pin
Eddy Vluggen11-Feb-22 12:35
professionalEddy Vluggen11-Feb-22 12:35 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
OriginalGriff11-Feb-22 19:22
mveOriginalGriff11-Feb-22 19:22 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox12-Feb-22 2:04
Richard A Knox12-Feb-22 2:04 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
OriginalGriff12-Feb-22 2:18
mveOriginalGriff12-Feb-22 2:18 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
jsc4215-Feb-22 5:48
professionaljsc4215-Feb-22 5:48 
QuestionI can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_9-Feb-22 22:51
_Q12_9-Feb-22 22:51 
AnswerRe: I can not see inside my phone directory branch when I plug it into my PC Pin
OriginalGriff9-Feb-22 23:09
mveOriginalGriff9-Feb-22 23:09 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_9-Feb-22 23:33
_Q12_9-Feb-22 23:33 

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.