Search results for query: *

  1. D

    Dynamic List with foreach

    Thank you Skydiver, but i'm looking for since a moment and i don't see how data binding can help me to automatically create a list of textboxes.
  2. D

    Dynamic List with foreach

    Hi :) I work at the moment on a database wish refer several customers. I've create a page with textboxes, each with specific x:name (FirstnameFrame, LastnameFrame, BirthdateFrame,...). I've a first class for customer : [SerializableAttribute] public class Customer { public string Frame {...
  3. D

    Static variable

    Very nice ! That works. Thank you jmcilhinney :)
  4. D

    Static variable

    Hi, I've created a simplified code for this post : public class Program { public static int value; public string printedValue = $"Value is {value}"; public void printValue() { value = 3; Console.WriteLine(printedValue); }...
Back
Top Bottom