Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace funzioni2
- {
- struct Animazione {
- string dato1;
- string dato2;
- double fattoreScala;
- bool canaleAlfa;
- //ecc.
- }
- struct Img {
- public string descrizioneBreve;
- string descrizioneLunga;
- byte[] header;
- //ecc.
- }
- class Program
- {
- static void MinMax1(int[] v, out int posMin, out int posMax, int partiDa=0, int quantiElementi=0)
- {
- posMin = 100;
- posMax = 999;
- Console.WriteLine($"partiDa: {partiDa} -- quantiElementi{quantiElementi}");
- }
- static Animazione Morph(in Img Partenza, in Img Destinazione)
- {
- Animazione risultato = new Animazione();
- //... istruzioni
- //Partenza.descrizioneBreve = NO! VIETATO
- return risultato;
- }
- static void Main(string[] args)
- {
- //int X = 33, Y = 66;
- //X = Y + (Y = X) * 0;
- //Console.WriteLine($"{X} {Y}");
- int posizioneMin; //, posizioneMax;
- MinMax1(new int[] { 1, 5, 6, 7 }, out posizioneMin, out _);
- Console.WriteLine(posizioneMin);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement