alright so Idk if dis is da right section but please move it if its not...anyways I always wanted to know (since im a noob) where to make a new metadata structure...I know metadata is protected but I wanted to know if like u can create a new metadata so I can experiment some things with my source...here is what I'm trying to create from metadata:
and yes, this is from a CoEmu source...forgot the name of it. any help(no flaming) would be appreciated :) :handsdown:
Code:
using System;
namespace MySqlHandler
{
public class MySqlReader
{
public MySqlReader(MySqlCommand command);
public string LastError { get; set; }
public bool Read();
public bool ReadBoolean(string columnName);
public byte ReadByte(string columnName);
public double ReadDouble(string columnName);
public float ReadFloat(string columnName);
public short ReadInt16(string columnName);
public int ReadInt32(string columnName);
public long ReadInt64(string columnName);
public sbyte ReadSByte(string columnName);
public string ReadString(string columnName);
public ushort ReadUInt16(string columnName);
public uint ReadUInt32(string columnName);
public ulong ReadUInt64(string columnName);
}
}