KunzeAndreas

Results 3 comments of KunzeAndreas

@Yozer Yes, I am sure. The test ist running in Visual Studio. Maybe there is a difference between .Net and mono? ![image](https://user-images.githubusercontent.com/7735384/168145585-9e09a139-7ac7-4729-b1ca-fa9a37d952c4.png) in dotPeek I see this private static void...

private static void FunctionWithOptionalParams(ref TestStruct structParam, ref decimal decimalParam, ref string strParam, ref DateTime dateParam) would break VB code calling converted C# code (in VB you can omit optional ref...

Optional ByRef xxx As Short = 0S converts to [Optional, DefaultParameterValue(0)] out short xxx should be [Optional, DefaultParameterValue((short)0)] out short xxx