반응형

jQuery 2652

Invalid cast from 'System.Int32' to 'System.Nullable`1[[System.Int32, mscorlib]]

Invalid cast from 'System.Int32' to 'System.Nullable`1[[System.Int32, mscorlib]] Type t = typeof(int?); //will get this dynamically object val = 5; //will get this dynamically object nVal = Convert.ChangeType(val, t);//getting exception here I am getting InvalidCastException in above code. For above I could simply write int? nVal = val, but above code is executing dynamically. I am getting a val..

Nice programing 2020.10.21

The cause of “bad magic number” error when loading a workspace and how to avoid it?

The cause of “bad magic number” error when loading a workspace and how to avoid it? I tried to load my R workspace and received this error: Error: bad restore file magic number (file may be corrupted) -- no data loaded In addition: Warning message: file ‘WORKSPACE_Wedding_Weekend_September’ has magic number '#gets' Use of save versions prior to 2 is deprecated I'm not particularly interested in ..

Nice programing 2020.10.21
반응형