Skip to content
forked from IQEX/pmat-rc-core

Rc.Framework - Set in- tended to develop a daily routine, is specialized for projects Yuuki Wesp's. It contains within itself all, since win32 wrappers, ending sockets

License

Notifications You must be signed in to change notification settings

itsph-ru/RC.Core

 
 

Repository files navigation

10.0 Alpha

version Platform_unix Platform_win
Project BuildStatusUnix BuildStatusWin
License

Doc:

Коллекции (Collections) - "root\Collections"

Generic Box

Box2<Int32> box = new Box2<Int32>(17, 25)
Console.WriteLine(box.T1 * box.T2);

Generic Matrix

...
Matrix<Int32> Max = new Matrix<Int32>();                                          //! Default Size
...
Matrix<Int32> Max = new Matrix<Int32>(16, 16);                                    //! Custom Size
...
Matrix<Int32> Max = new Matrix<Int32>(new SizeMatrix(16, 16), TypeMatrix.Square); //! Custom Size & Forms
...
Int32 i = Max[12, 13];          // Get Value in row 12, collum 13
...
Int32[] i = Max.GetCollum(5);   // Get Value in 5 Collum
...
Int32[] i = Max.GetRow(5);      // Get Value in 5 Row
...
Int32[] RowData = new Int32[16];
for(int i = 0; i != RowData.Lenght; i++)
{
    RowData[i] = new Random().Next(0, Int32.MaxValue - 1);
}
Max.SetRow(RowData, 9);         // Set Row 9 as Data
 ...
Int32[] CollumData = new Int32[16];
for(int i = 0; i != CollumData.Lenght; i++)
{
    CollumData[i] = new Random().Next(0, Int32.MaxValue - 1);
}
Max.SetCollum(CollumData, 6);   // Set Collum 6 as Data

This page is in a state of write...

About

Rc.Framework - Set in- tended to develop a daily routine, is specialized for projects Yuuki Wesp's. It contains within itself all, since win32 wrappers, ending sockets

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%