Advertisement
nahidjamalli

Lesson #8

Mar 26th, 2020
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. namespace MyNamespace
  2. {
  3.     class Program
  4.     {
  5.         static void Main()
  6.         {
  7.             MyClass mc = new MyClass();
  8.             mc.a = 2121;
  9.             mc.b = "dsds";
  10.             mc.c = 2321.2121f;
  11.         }
  12.     }
  13.  
  14.     class MyClass
  15.     {
  16.         public int a;
  17.         public string b;
  18.         public float c;
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement