C#通用方法执行顺序

时间:2016-02-17 16:24:24

标签: c# multithreading thread-safety

如果调用某些方法但其中没有其他调用但可能需要很长时间才能完成,那么执行的顺序是否与调用的相同?例如......

public class Test
{
    static void Main()
    {
        Method1();
        Method2();        
    }
    static void Method1()
    {
        // Perhaps has many calculations that take a long time to complete
    }
    static void Method2()
    {            
    }

方法2在方法1完成之前是否会运行?什么可以在1完成之前运行2?感谢

0 个答案:

没有答案