ItsMods

Full Version: TEQ Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
TooEasyQuestions Help here. Ask whatever you want to get help on.

Some topics that may be asked about: plugins, mods, tutorials, glitches, C#, MW3, MW2, BO, BF3, forum rules, textures, other games (games of interest), etc.
CAN i haz an OMA for birthday?

Thanks Barata...
(04-11-2012, 21:41)barata Wrote: [ -> ]CAN i haz an OMA for birthday?

Thanks Barata...

Tell me your date of birth and OMA will be delivered right in time.
C#: Please explain lambda expressions.
(04-12-2012, 15:01)zxz0O0 Wrote: [ -> ]C#: Please explain lambda expressions.

A lambda expression is an anonymous function that can contain expressions and statements, and can be used to create delegates or expression tree types.

All lambda expressions use the lambda operator =>, which is read as "goes to". The left side of the lambda operator specifies the input parameters (if any) and the right side holds the expression or statement block. The lambda expression x => x * x is read "x goes to x times x." This expression can be assigned to a delegate type as follows:
CSHARP Code
  1. delegate int del(int i);
  2. static void Main(string[] args)
  3. {
  4. del myDelegate = x => x * x;
  5. int j = myDelegate(5); //j = 25
  6. }

To create an expression tree type:
CSHARP Code
  1. using System.Linq.Expressions;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Expression<del> myET = x => x * x;
  10. }
  11. }
  12. }
Give me a list of NumVertices and PrimCounts that I could make chams with since logging them is boring as fuck.
(04-12-2012, 15:39)OrangePL Wrote: [ -> ]Give me a list of NumVertices and PrimCounts that I could make chams with since logging them is boring as fuck.

You get help (explanation, advice) here, but not the job done for you.
Fuu
Tongue
How can I find MW3 GSC Files? Cool
Pages: 1 2 3