public static void Main()
if (condition && ApiMethod(out var myStruct) && AnotherMethod(myStruct))
Console.WriteLine("Do Something with {0}", myStruct);
public static bool ApiMethod( out MyStruct o )
Console.WriteLine("Api");
public static bool AnotherMethod(MyStruct ms){
Console.WriteLine("Another");
public static MyStruct Empty {get;} = new MyStruct();