@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: ByRef is a VB keyword that specifies a variable to be passed as a parameter BY REFERENCE. In other words, the pointer to the variable is passed and any change to its value made within the function or sub will change its value outside the function/sub. !!!!C# Signature: [DllImport("coredll.dll", SetLastError=true)] static extern TODO ByRef(TODO); !!!!VB Signature: Declare Function ByRef Lib "coredll.dll" (TODO) As TODO !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: To pass a variable by value (i.e. any change made to the variable's value within the function/sub will not affect it outside the function/sub.) use ByVal. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: ByRef@msdn on MSDN
Edit coredll.ByRef
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.