Click here to Skip to main content
15,922,894 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Unfocus control Pin
Dave Kreskowiak11-May-08 8:34
mveDave Kreskowiak11-May-08 8:34 
QuestionAssemblies Pin
MrColeyted9-May-08 22:22
MrColeyted9-May-08 22:22 
AnswerDouble Post - Please Ignore Pin
Giorgi Dalakishvili10-May-08 5:13
mentorGiorgi Dalakishvili10-May-08 5:13 
Questionhow to find a version of DLL Pin
Sujit Gupta9-May-08 7:01
Sujit Gupta9-May-08 7:01 
AnswerRe: how to find a version of DLL Pin
CodingYoshi9-May-08 13:59
CodingYoshi9-May-08 13:59 
QuestionRemoting issue Pin
Siddharth Rastogi8-May-08 22:58
Siddharth Rastogi8-May-08 22:58 
AnswerRe: Remoting issue Pin
CodingYoshi9-May-08 12:18
CodingYoshi9-May-08 12:18 
QuestionHow to find argument type (in] [out] using reflection? Pin
fizk8-May-08 22:11
fizk8-May-08 22:11 
I'm using reflection API's to find the argument types of a methods (such as
in or out etc). For example, consider this method in a class written in C#

public int outerFoo(string strIn, ref double dbRef, out double dbOut) { return 42; }

When using reflection in C++/CLI, I would like to know if an argument is of in or out type. In this case, I should see strIn as in, dbRef as
ref (or in and out type) and dbOut as out type. I got the code written like this

for each ( ParameterInfo^ pi in (((MethodInfo^) methInfo)->GetParameters()))
{
if(pi->IsIn)
..do something
else if(pi->IsOut)
..do something else
}

But IsIn and IsOut always return false. Are these deprecated? Any workarounds?

Any help would be appreciated
Thanks
Fiz
QuestionSocket is closed before all buffered data is transmitted Pin
realbobb8-May-08 20:54
realbobb8-May-08 20:54 
AnswerRe: Socket is closed before all buffered data is transmitted Pin
CodingYoshi9-May-08 13:57
CodingYoshi9-May-08 13:57 
GeneralRe: Socket is closed before all buffered data is transmitted Pin
realbobb12-May-08 21:06
realbobb12-May-08 21:06 
Question"?xml namespace="" prefix="asp" ?" in .NET 2005 Pin
salon8-May-08 4:39
salon8-May-08 4:39 
QuestionGet the proper path name, proper case I mean. Pin
AndrewVos8-May-08 3:38
AndrewVos8-May-08 3:38 
AnswerRe: Get the proper path name, proper case I mean. Pin
Dave Kreskowiak8-May-08 4:59
mveDave Kreskowiak8-May-08 4:59 
GeneralRe: Get the proper path name, proper case I mean. Pin
AndrewVos8-May-08 5:14
AndrewVos8-May-08 5:14 
AnswerRe: Get the proper path name, proper case I mean. Pin
Dave Kreskowiak8-May-08 5:32
mveDave Kreskowiak8-May-08 5:32 
GeneralRe: Get the proper path name, proper case I mean. Pin
AndrewVos8-May-08 5:39
AndrewVos8-May-08 5:39 
GeneralRe: Get the proper path name, proper case I mean. Pin
AndrewVos8-May-08 6:12
AndrewVos8-May-08 6:12 
Questiongetting input from user Pin
raydona7-May-08 8:11
raydona7-May-08 8:11 
AnswerRe: getting input from user Pin
Dave Kreskowiak7-May-08 8:42
mveDave Kreskowiak7-May-08 8:42 
Questionhow to use SetWindowLong API function calling in Vb.net Pin
brams77-May-08 4:04
brams77-May-08 4:04 
AnswerRe: how to use SetWindowLong API function calling in Vb.net Pin
Dave Kreskowiak7-May-08 7:12
mveDave Kreskowiak7-May-08 7:12 
GeneralRe: how to use SetWindowLong API function calling in Vb.net Pin
brams77-May-08 10:33
brams77-May-08 10:33 
GeneralRe: how to use SetWindowLong API function calling in Vb.net Pin
Dave Kreskowiak7-May-08 10:57
mveDave Kreskowiak7-May-08 10:57 
GeneralRe: how to use SetWindowLong API function calling in Vb.net Pin
brams79-May-08 4:40
brams79-May-08 4:40 

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.