Click here to Skip to main content
16,006,535 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to use List Pin
User 665822-Sep-06 5:52
User 665822-Sep-06 5:52 
Questionformat of MIB_IPFORWARDROW structure? Pin
b_girl22-Sep-06 5:32
b_girl22-Sep-06 5:32 
AnswerRe: format of MIB_IPFORWARDROW structure? Pin
Guffa22-Sep-06 6:39
Guffa22-Sep-06 6:39 
GeneralRe: format of MIB_IPFORWARDROW structure? Pin
b_girl22-Sep-06 7:19
b_girl22-Sep-06 7:19 
AnswerRe: format of MIB_IPFORWARDROW structure? Pin
Guffa22-Sep-06 9:25
Guffa22-Sep-06 9:25 
GeneralRe: format of MIB_IPFORWARDROW structure? Pin
b_girl22-Sep-06 9:40
b_girl22-Sep-06 9:40 
AnswerRe: format of MIB_IPFORWARDROW structure? Pin
Guffa22-Sep-06 9:47
Guffa22-Sep-06 9:47 
GeneralRe: format of MIB_IPFORWARDROW structure? Pin
User 665822-Sep-06 9:57
User 665822-Sep-06 9:57 
b_girl wrote:
Should I be using uint instead of uint32? Not 100% sure what the difference is, will look it up a little later...


It's the same, sort of. uint is a C# keyword for the System.UInt32 .NET type.

However, be careful using an unsigned int. It's not CLS compilant, which means that there may exist other .NET languages that might not support unsigned integers/longs.
As long as you use this struct only in your application/dll where the code is not readable from outside (marked as internal, the default one), then you're safe.
But if you plan to use this code within another .NET language which does not support unsigned data types, the you must use int instead of uint

regards

modified 12-Sep-18 21:01pm.

GeneralRe: format of MIB_IPFORWARDROW structure? Pin
b_girl22-Sep-06 10:15
b_girl22-Sep-06 10:15 
AnswerRe: format of MIB_IPFORWARDROW structure? Pin
Judah Gabriel Himango22-Sep-06 6:39
sponsorJudah Gabriel Himango22-Sep-06 6:39 
GeneralRe: format of MIB_IPFORWARDROW structure? Pin
b_girl22-Sep-06 7:15
b_girl22-Sep-06 7:15 
QuestionHow to get the size in bytes of a file name? Pin
Yustme22-Sep-06 5:00
Yustme22-Sep-06 5:00 
AnswerRe: How to get the size in bytes of a file name? Pin
Judah Gabriel Himango22-Sep-06 5:06
sponsorJudah Gabriel Himango22-Sep-06 5:06 
GeneralRe: How to get the size in bytes of a file name? Pin
User 665822-Sep-06 5:55
User 665822-Sep-06 5:55 
GeneralRe: How to get the size in bytes of a file name? Pin
Judah Gabriel Himango22-Sep-06 6:28
sponsorJudah Gabriel Himango22-Sep-06 6:28 
GeneralRe: How to get the size in bytes of a file name? Pin
Guffa22-Sep-06 6:41
Guffa22-Sep-06 6:41 
AnswerRe: How to get the size in bytes of a file name? Pin
Guffa22-Sep-06 5:15
Guffa22-Sep-06 5:15 
GeneralRe: How to get the size in bytes of a file name? Pin
Yustme22-Sep-06 7:54
Yustme22-Sep-06 7:54 
AnswerRe: How to get the size in bytes of a file name? Pin
Guffa22-Sep-06 9:46
Guffa22-Sep-06 9:46 
GeneralRe: How to get the size in bytes of a file name? Pin
Yustme22-Sep-06 9:54
Yustme22-Sep-06 9:54 
QuestionCustom Line Object Pin
ystl22-Sep-06 4:56
ystl22-Sep-06 4:56 
AnswerRe: Custom Line Object Pin
Judah Gabriel Himango22-Sep-06 5:34
sponsorJudah Gabriel Himango22-Sep-06 5:34 
GeneralRe: Custom Line Object Pin
ystl25-Sep-06 4:02
ystl25-Sep-06 4:02 
GeneralRe: Custom Line Object Pin
ystl25-Sep-06 4:03
ystl25-Sep-06 4:03 
QuestionHow to hide alpha layer Pin
Parshant Verma22-Sep-06 4:33
Parshant Verma22-Sep-06 4: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.