vote up 3 vote down star

How do I apply the MarshalAsAttribute to the return type of the code below?

public ISomething Foo()
{
    return new MyFoo();
}
flag

68% accept rate

2 Answers

vote up 15 vote down check

According to http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshalasattribute.aspx:

[return: MarshalAs(<your marshal type>)]
public ISomething Foo()
{
    return new MyFoo();
}
link|flag
vote up -1 vote down
[return:MarshalAs]
public ISomething Foo()
{
    return new MyFoo();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.