Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が継承した pasketti コードの別の部分で、これに出くわしました。
public const int SqlCommandTimeout = 60 * 10;
これが定数に入れられる計算値でなければならない理由はありますか?
私の C# トレーニングはすべてオンザジョブで、バックアップ用に 1 冊か 2 冊の本を持っていたので、これには正当な理由があった可能性があることはわかっています。
より読みやすくすることを目的としています: 60 * 10 = 10 分。
定数値の背後にある理由を示すためだけに。長いように思えますSqlCommandTimeoutが、秒単位の場合、600 秒が何分あるかを計算する代わりに、これが 10 分であることを示す良い方法です。
SqlCommandTimeout