I want to put some python script's into resources to not implement it in code like this:
Code = "if pos.IsConstruction: \r\n pos.Mirror()" // Code is string
So I made .resx file named _PythonScripts and put that code into .py file. I was trying to read this like that example, but IDE is talking me that this is binary file.
Code = Resources._PythonScripts.clear
I can add that this is working on .sql files but on .py not. Can You give me tip how Can I read this?