Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

How to define unknown variable type passed to a method and then got what ever operations on it within method in C#?

user-image
Question ajoutée par ali sabra , Programmer-technical support , Business concept for software solutions
Date de publication: 2016/04/01
Utilisateur supprimé
par Utilisateur supprimé

class A{

var x;

x="something";PrintMyVar(x);

}

void PrintMyVar(var a){

Console.WrtieLine(a);

}

 

More Questions Like This