0

I'm facing the problem to solve this quiz in C#. Please help!! And provide some answer.

static __ Swap ____(ref T a, ref T b) { T temp = a; a = b; b = ___ ; ____ a; } <T> a T return b temp

18th Jul 2019, 3:52 PM
katherine Rapalo
2 ответов
+ 9
Try this: static int Swap <T> (ref T a, ref T b){ T temp = a; a = b; b = temp; return a; }
18th Jul 2019, 4:02 PM
Zhenis Otarbay
Zhenis Otarbay - avatar
Актуальное сегодня
.
1 Votes
What?
0 Votes
HTML
0 Votes
Web
0 Votes
Quiz duel
0 Votes
FRC Coding?
1 Votes
AI
2 Votes
help
0 Votes
APIs
1 Votes