• 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TEQ Help
#1
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.
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
  Reply
#2
CAN i haz an OMA for birthday?

Thanks Barata...
Don't worry if things aren't the way you planned, in the end everything will solve itself...
  Reply
#3
(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.
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
  Reply
#4
C#: Please explain lambda expressions.
[Image: azuw.jpg]
  Reply
#5
(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. }
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
  Reply
#6
Give me a list of NumVertices and PrimCounts that I could make chams with since logging them is boring as fuck.
[Image: lQDUjba.jpg]
  Reply
#7
(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.
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
  Reply
#8
Fuu
[Image: lQDUjba.jpg]
  Reply
#9
Tongue
[Image: r212360a129ce9b84444093b6cd2699013a1fbn155.png]
  Reply
#10
How can I find MW3 GSC Files? Cool
  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)