@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: ByVal is a VB keyword that specifies a variable to be passed as a parameter BY VALUE. In other words, if the function or sub changes the value of the internal variable, it does not change the value of the external variable that was passed to it. !!!!C# Signature: [DllImport("coredll.dll", SetLastError=true)] static extern TODO ByVal(TODO); !!!!VB Signature: Declare Function ByVal 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 reference (i.e. change the external variable to whatever value is set inside the function/sub) use ByRef before the parameter name. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: ByVal@msdn on MSDN
Edit coredll.ByVal
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.