Skip to content

Commit c5c56a9

Browse files
authored
Fix sample output - batch 33 (dotnet#5478)
1 parent e4e4938 commit c5c56a9

File tree

3 files changed

+4
-18
lines changed
  • samples/snippets
    • csharp/VS_Snippets_CLR_System
    • visualbasic/VS_Snippets_CLR_System/system.security.cryptography.symmetricalgorithm.blocksize/vb

3 files changed

+4
-18
lines changed

samples/snippets/csharp/VS_Snippets_CLR_System/system.convert.tostring2/cs/tostring7.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ public static void Main()
2626
// -20 --> -20 minus 20
2727
// 0 --> 0 0
2828
// 100 --> 100 100
29-
// </Snippet27>
3029
}
3130
}
31+
// </Snippet27>

samples/snippets/csharp/VS_Snippets_CLR_System/system.security.cryptography.symmetricalgorithm.blocksize/cs/program.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,7 @@ static void Main(string[] args)
2424
}
2525
}
2626
}
27-
//This sample produces the following output when run on .NET Framework:
28-
//Aes
29-
// Legal min key size = 128
30-
// Legal max key size = 256
31-
// Legal min block size = 128
32-
// Legal max block size = 128
33-
//
34-
//This sample produces the following output when run on .NET Core:
27+
//This sample produces the following output:
3528
//Aes
3629
// Legal min key size = 128
3730
// Legal max key size = 256

samples/snippets/visualbasic/VS_Snippets_CLR_System/system.security.cryptography.symmetricalgorithm.blocksize/vb/program.vb

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,8 @@ Class Program
2323

2424
End Sub
2525
End Class
26-
'This sample produces the following output when run on .NET Framework:
27-
'AesManaged
28-
' Legal min key size = 128
29-
' Legal max key size = 256
30-
' Legal min block size = 128
31-
' Legal max block size = 128
32-
'
33-
'This sample produces the following output when run on .NET Core:
34-
'AesManaged
26+
'This sample produces the following output:
27+
'Aes
3528
' Legal min key size = 128
3629
' Legal max key size = 256
3730
' Legal min block size = 128

0 commit comments

Comments
 (0)