Question

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

public ISomething Foo()
{
    return new MyFoo();
}
Was it helpful?

Solution

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();
}

OTHER TIPS

[return:MarshalAs]
public ISomething Foo()
{
    return new MyFoo();
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top