views:

441

answers:

2

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

public ISomething Foo()
{
    return new MyFoo();
}
+17  A: 

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();
}
Franci Penov
A: 
[return:MarshalAs]
public ISomething Foo()
{
    return new MyFoo();
}
Jonathan