Is there any way or attribute that places it on a Class, Method, Structure, or anything else that changes its color? Example of function CType :
Noticethatitiscolored,anditsargumentsinsteadofCType(Expression,TypeName)AsTypegetsCType(<ex...
I ended up having the same problem about a post already done here, however come a doubt next to what was posted in the article. What windows update would be to remove from the ones mentioned in this article ? (removal would be a palliative unti...
Why can not I print this string in reverse? I know there is a possibility of using a simpler form, but I want to understand the error.
static void Main(string[] args)
{
string frase = "Diego lima de Aquino";
for(int i = frase...
function Selecionar(elemento,cordefundo)
{
var Inputs = elemento.getElementsByTagName("input");
var cor = elemento.style.backgroundColor; //manter a cor default do elemento
for(var i = 0; i...
In my app.config I have the following lines of code:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="ControleBD"...
Is it possible to pass a generic list by parameter?
Ex: I have List<Pessoa> and List<object> .
and I have my method:
public void FaçaAlgo(List<T> lista) { }
How can I get my method to receive both Lis...
Hello, I'm using a non-fiscal Engeworks thermal printer to print payment vouchers, I'm using the Generic Text Only driver.
The problem is that it prints the vouchers as if they were whole pages and I wanted it to print only what was needed, f...
I have a method that receives values of type string and performs the conversion to other types, my problem is that when converting an information to double it changes its precise value that this does not happen. For example, I get...
I have the following MessageBox
MessageBox.Show("Deseja iniciar a forma automática?", "Atenção",
MessageBoxButtons.YesNo, MessageBoxIcon.Question)
Can I customize it?
Instead of being the YesNo buttons, put...
I was trying to get whitespace from a string , but .Trim() does not work, this still displays whitespaces:
var teste = texto.Trim();
txtConteudo.Text = teste;
For example, if it receives: "text text", it continues: "text text" eve...