1.Are Static class with Static Method Thread Safe ?
Yes,when the static fields/members are of value type.
No when the static fields/members are of reference type.
2.Are Static Fields inside a non-static method Thread Safe ?
Yes,when the static fields/members are of value type.
No when the static fields/members are of reference type.