예제 #1
0
        public virtual byte[] GetFullFont()
        {
            RandomAccessFileOrArray rf2 = null;

            try {
                rf2 = raf.CreateView();
                byte[] b = new byte[(int)rf2.Length()];
                rf2.ReadFully(b);
                return(b);
            }
            finally {
                try {
                    if (rf2 != null)
                    {
                        rf2.Close();
                    }
                }
                catch (Exception) {
                }
            }
        }