Generally, I would recommend using ExternalInterface over fscommand. I regard fscommand more or less as deprecated.
That said, what you mention about fscommand being non-blocking could be correct, since ExternalInterface.call() is synchronous, to be able to return a value from the called external function. I guess there could be situations, edge cases, where that could speak in favor of fscommand, but you would probably have to test that.
Again, I would recommend ExternalInterface, it has many features fscommand doesn't have, like preserving data types and automatic serialization/deserialization of objects between ActionScript and the typical external environment - JavaScript in a web page - whereas fscommand only sends strings. Using ExternalInterface in a .NET app, you may have to parse the XML-RPC (that is used internally by ExternalInterface) your self, I believe, but I'm not sure.