CSL.DirectoryHandler.LogError C# (CSharp) 메소드

LogError() 공개 정적인 메소드

public static LogError ( string error ) : void
error string
리턴 void
        public static void LogError(string error)
        {
            /*
            FileStream fs = null;

            if (!ErrorLog.Exists)
                ErrorLog.Create();
            try
            {
                fs = ErrorLog.OpenWrite();
                List<byte> bytes = new List<byte>();
                foreach (char l in error.ToCharArray())
                    bytes.Add(Convert.ToByte(l));

                fs.Write(bytes.ToArray(), 0, bytes.Count);
            }
            catch { }
            finally { if(fs != null)fs.Close(); }*/
        }