File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed
cpp/VS_Snippets_CLR/Environment.TickCount/CPP
system.collections.generic.equalitycomparer/cs
system.convert.toint32/cs
VS_Snippets_CLR/Environment.TickCount/CS
system.collections.generic.equalitycomparer/vb
system.convert.toint32/vb
VS_Snippets_CLR/Environment.TickCount/VB Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ int main()
13
13
}
14
14
15
15
/*
16
- This example produces the following results :
16
+ This example produces an output similar to the following:
17
17
18
18
TickCount: 101931139
19
19
*/
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public static void Main()
17
17
}
18
18
}
19
19
/*
20
- This example produces the following results :
20
+ This example produces an output similar to the following:
21
21
22
22
TickCount: 101931139
23
23
*/
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ public override int GetHashCode(Box bx)
104
104
return hCode . GetHashCode ( ) ;
105
105
}
106
106
}
107
- /* This example produces the following output :
107
+ /* This example produces an output similar to the following:
108
108
*
109
109
Boxes equality by dimensions:
110
110
Added red, Count = 1, HashCode = 46104728
Original file line number Diff line number Diff line change @@ -94,9 +94,9 @@ private static void ConvertChar()
94
94
// Converted the Char value 'a' to the Int32 value 97.
95
95
// Converted the Char value 'z' to the Int32 value 122.
96
96
// Converted the Char value '' to the Int32 value 7.
97
- // Converted the Char value '? ' to the Int32 value 1023.
98
- // Converted the Char value '? ' to the Int32 value 32767.
99
- // Converted the Char value '? ' to the Int32 value 65534.
97
+ // Converted the Char value 'Ͽ ' to the Int32 value 1023.
98
+ // Converted the Char value '翿 ' to the Int32 value 32767.
99
+ // Converted the Char value '' to the Int32 value 65534.
100
100
// </Snippet3>
101
101
}
102
102
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Class Sample
14
14
End Sub
15
15
End Class
16
16
'
17
- 'This example produces the following results :
17
+ 'This example produces an output similar to the following:
18
18
'
19
19
'TickCount: 101931139
20
20
'
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ Class BoxSameVolume : Inherits EqualityComparer(Of Box)
121
121
Return hCode.GetHashCode()
122
122
End Function
123
123
End Class
124
- ' This example produces the following output :
124
+ ' This example produces an output similar to the following:
125
125
' *
126
126
' Boxes equality by dimensions:
127
127
' Added red, Count = 1, HashCode = 46104728
Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ Module modMain
87
87
' Converted the Char value 'a' to the Int32 value 97.
88
88
' Converted the Char value 'z' to the Int32 value 122.
89
89
' Converted the Char value '' to the Int32 value 7.
90
- ' Converted the Char value '? ' to the Int32 value 1023.
91
- ' Converted the Char value '? ' to the Int32 value 32767.
92
- ' Converted the Char value '? ' to the Int32 value 65534.
90
+ ' Converted the Char value 'Ͽ ' to the Int32 value 1023.
91
+ ' Converted the Char value '翿 ' to the Int32 value 32767.
92
+ ' Converted the Char value '' to the Int32 value 65534.
93
93
' </Snippet3>
94
94
End Sub
95
95
You can’t perform that action at this time.
0 commit comments