Dynamic .libs are just void stubs of functions exported from the DLL. So it's OK for dynamic debug and release be the same in size as same set of functions is exported in every case and no additional functionality debug or release version has. So you can use interchangably. However it's not recommended as things could change (f.e. new API would be added to release only version or vice versa) and you'll have to update your project files.
Sonix wrote:
Is there any difference between the debug & release versions of the Dynamic StarBurn.lib? Both are same size in bytes.