Possible to "or" two preprocessor directives together?

If I have the following code:

#if UNITY_STANDALONE_WIN
// some code
#endif

#if UNITY_EDITOR_WIN
// same code as above
#endif

Can I combine them together some way so I don’t have to write the same code twice?

if UNITY_STANDALONE_WIN || UNITY_EDITOR_WIN