File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
csharp/VS_Snippets_CLR_System/system.tuple`2.equals/cs
visualbasic/VS_Snippets_CLR_System/system.tuple`2.equals/vb Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ public static void Main()
16
16
// Compare the Tuple objects
17
17
for ( int ctr = 0 ; ctr < scores . Length ; ctr ++ )
18
18
{
19
- Tuple < string , Nullable < int > > currentTuple = scores [ ctr ] ;
20
19
for ( int innerCtr = ctr + 1 ; innerCtr < scores . Length ; innerCtr ++ )
21
20
{
22
21
Console . WriteLine ( "{0} = {1}: {2}" ,
@@ -47,4 +46,4 @@ public static void Main()
47
46
// (Ernie, ) = (Dan, 90): False
48
47
//
49
48
// (Nancy, 88) = (Dan, 90): False
50
- // </Snippet1>
49
+ // </Snippet1>
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ Module Example
14
14
15
15
' Compare the Tuple objects
16
16
For ctr As Integer = 0 To scores.Length - 1
17
- Dim currentTuple As Tuple( Of String , Nullable( Of Integer )) = scores(ctr)
18
17
For innerCtr As Integer = ctr + 1 To scores.Length - 1
19
18
Console.WriteLine( "{0} = {1}: {2}" ,
20
19
scores(ctr), scores(innerCtr),
You can’t perform that action at this time.
0 commit comments