コード例 #1
0
        public static STL ByASCII(string data)
        {
            STL stl = new STL();

            stl.ParseASCII(data);
            return(stl);
        }
コード例 #2
0
 internal Shell(STL stl)
 {
     m_stl = stl;
 }
コード例 #3
0
 public static Shell BySTL(STL stl)
 {
     return(new Shell(stl));
 }