echoHU Posted October 21, 2018 Share Posted October 21, 2018 Hello! I want to share a mysql query function under one resource, I have got login.cs and mysql.cs and want to share this function to be able to use in login.cs public DataTable ExecuteQueryWithResult(string sql) { using (MySqlConnection conn = new MySqlConnection(connStr)) { try { MySqlCommand cmd = new MySqlCommand(sql, conn); conn.Open(); MySqlDataReader rdr = cmd.ExecuteReader(); DataTable results = new DataTable(); results.Load(rdr); rdr.Close(); return results; } catch (Exception ex) { NAPI.Util.ConsoleOutput("DATABASE: [ERROR] " + ex.ToString()); return null; } } } So the question is: How to use this function in other C# files under one resource? Is there any function like TriggerEvent, etc? Link to comment Share on other sites More sharing options...
Jake Posted October 24, 2018 Share Posted October 24, 2018 If I understand correctly you are talking about Partial Classes https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/partial-classes-and-methods Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now